Skip to content

Commit

Permalink
fix: empty commit for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Jul 18, 2022
1 parent d0c4dbf commit 8cc5c66
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/actions/create-dockerignore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ inputs:
runs:
using: 'node16'
main: 'index.js'

2 changes: 1 addition & 1 deletion .github/actions/create-dockerignore/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/create-dockerignore/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .github/actions/pack-docker-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
uses: docker/build-push-action@v3
if: inputs.cached == 'false'
with:
context: ${{inputs.context}}
context: ${{steps.analysis.outputs.pwd}}
push: ${{inputs.push}}
platforms: ${{inputs.platforms}}
tags: ${{steps.analysis.outputs.build_tags}}
Expand All @@ -52,7 +52,7 @@ runs:
uses: docker/build-push-action@v2
if: inputs.cached == 'true'
with:
context: ${{inputs.context}}
context: ${{steps.analysis.outputs.pwd}}
push: ${{inputs.push}}
platforms: ${{inputs.platforms}}
tags: ${{steps.analysis.outputs.build_tags}}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ jobs:
uses: filipeforattini/ff-iac-github-actions/.github/actions/pack-docker-build@main
with:
cached: false
platforms: ${{inputs.platforms}}


#--------------------------------------------------#
Expand Down
1 change: 0 additions & 1 deletion src/actions/create-dockerignore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ inputs:
runs:
using: 'node16'
main: 'index.js'

1 change: 0 additions & 1 deletion src/actions/create-dockerignore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ async function action() {
});

fs.writeFileSync(path.join(process.cwd(), ".dockerignore"), content);
core.warning(`content = ${content}`)
}

try {
Expand Down
4 changes: 2 additions & 2 deletions src/actions/pack-docker-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
uses: docker/build-push-action@v3
if: inputs.cached == 'false'
with:
context: ${{inputs.context}}
context: ${{steps.analysis.outputs.pwd}}
push: ${{inputs.push}}
platforms: ${{inputs.platforms}}
tags: ${{steps.analysis.outputs.build_tags}}
Expand All @@ -52,7 +52,7 @@ runs:
uses: docker/build-push-action@v2
if: inputs.cached == 'true'
with:
context: ${{inputs.context}}
context: ${{steps.analysis.outputs.pwd}}
push: ${{inputs.push}}
platforms: ${{inputs.platforms}}
tags: ${{steps.analysis.outputs.build_tags}}
Expand Down

0 comments on commit 8cc5c66

Please sign in to comment.