Skip to content

Commit

Permalink
fix: missing build-args pass
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Dec 10, 2022
1 parent 3fbbbf3 commit 308dd33
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ runs:
with:
context: .
file: ${{ inputs.development-dockerfile }}
build-args: ${{ inputs.build-args }}
push: true
tags: ${{ steps.meta-dev.outputs.tags }}
labels: ${{ steps.meta-dev.outputs.labels }}
Expand Down Expand Up @@ -94,8 +95,7 @@ runs:
with:
context: ${{ inputs.context }}
file: ${{ inputs.dockerfile }}
build-args: |
${{ inputs.build-args }}
build-args: ${{ inputs.build-args }}
push: true
tags: ${{ steps.meta-edge.outputs.tags }}
labels: ${{ steps.meta-edge.outputs.labels }}
Expand All @@ -122,8 +122,7 @@ runs:
with:
context: ${{ inputs.context }}
file: ${{ inputs.dockerfile }}
build-args: |
${{ inputs.build-args }}
build-args: ${{ inputs.build-args }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down

0 comments on commit 308dd33

Please sign in to comment.