We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4437b2b commit 85802bcCopy full SHA for 85802bc
1 file changed
.github/workflows/build-and-push.yml
@@ -137,11 +137,12 @@ jobs:
137
done)
138
139
# Create and push manifest with all tags
140
- for tag in ${{ steps.meta.outputs.tags }}; do
+ tags="${{ steps.meta.outputs.tags }}"
141
+ echo "$tags" | while read -r tag; do
142
docker buildx imagetools create -t "$tag" $digests
143
done
144
145
- name: Inspect image
146
run: |
- TAG=$(echo "${{ steps.meta.outputs.tags }}" | head -n1 | cut -d':' -f2)
147
- docker buildx imagetools inspect ${{ env.IMAGE_NAME }}:${TAG}
+ TAG=$(echo "${{ steps.meta.outputs.tags }}" | head -n1 | tr -d '\n')
148
+ docker buildx imagetools inspect "$TAG"
0 commit comments