We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93fa488 commit a7bb190Copy full SHA for a7bb190
.github/workflows/docker-release.yml
@@ -75,10 +75,8 @@ jobs:
75
76
- name: Push and sign Docker image with DCT
77
run: |
78
- # Parse the tags from metadata output
79
- IFS=',' read -ra TAGS <<< "${{ steps.meta.outputs.tags }}"
80
- # Push each tag with Docker Content Trust enabled
81
- for tag in "${TAGS[@]}"; do
+ # The tags are newline-separated, not comma-separated
+ echo "${{ steps.meta.outputs.tags }}" | while read -r tag; do
82
echo "Pushing and signing $tag"
83
docker push $tag
84
done
0 commit comments