Skip to content

Commit 49a1851

Browse files
Merge pull request #20 from weierophinney/hotfix/workflow-expression-syntax-join
Fix tag concatenation in build-and-push-containers workflow input
2 parents 39c27a8 + b5c42c8 commit 49a1851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-and-push-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
file: ./Dockerfile
4242
platforms: linux/amd64
4343
push: true
44-
tags: ${{ join(fromJSON(steps.tags.outputs.tags), "\n") }}
44+
tags: ${{ join(fromJSON(steps.tags.outputs.tags), ',') }}

0 commit comments

Comments
 (0)