Skip to content

Commit

Permalink
fix: quote tags args
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckadams committed Dec 14, 2024
1 parent 379077e commit ec6e169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-container-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
docker buildx create --use
docker buildx build --platform linux/arm64 \
-f ${{ matrix.dockerfile }} \
$(for tag in ${{ steps.meta.outputs.tags }}; do echo " -t $(basename $tag)"; done) \
$(for tag in "${{ steps.meta.outputs.tags }}"; do echo " -t $tag"; done) \
--push \
.
Expand Down

0 comments on commit ec6e169

Please sign in to comment.