Skip to content

Commit

Permalink
fix join
Browse files Browse the repository at this point in the history
  • Loading branch information
rucciva committed Aug 29, 2024
1 parent 2cab781 commit 2cbb248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: |
tags=""
if [[ $(echo '${{ toJson(matrix.image.tags) }}' | jq -c 'type') == '"array"' ]]; then
for element in ${{ join(matrix.image.tags, " ") }}; do
for element in ${{ join(matrix.image.tags, ' ') }}; do
tags="${tags}$(echo "type=raw,${element}")\n"
done
Expand Down

0 comments on commit 2cbb248

Please sign in to comment.