Skip to content

Commit

Permalink
fix: attempt fix for build args input
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Dec 10, 2022
1 parent 37c51c7 commit 3fbbbf3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ 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 @@ -121,7 +122,8 @@ 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 3fbbbf3

Please sign in to comment.