Skip to content

Commit

Permalink
Merge pull request #20 from weierophinney/hotfix/workflow-expression-…
Browse files Browse the repository at this point in the history
…syntax-join

Fix tag concatenation in build-and-push-containers workflow input
  • Loading branch information
weierophinney committed Mar 16, 2021
2 parents 39c27a8 + b5c42c8 commit 49a1851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: ${{ join(fromJSON(steps.tags.outputs.tags), "\n") }}
tags: ${{ join(fromJSON(steps.tags.outputs.tags), ',') }}

0 comments on commit 49a1851

Please sign in to comment.