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 a0ad92e commit f5a4d86Copy full SHA for f5a4d86
.github/workflows/build-push.yml
@@ -132,7 +132,9 @@ jobs:
132
- name: Create manifest list and push
133
working-directory: ${{ runner.temp }}/digests
134
run: |
135
- docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "${{ steps.metadata.outputs.json }}") \
+ docker buildx imagetools create
136
+ $(echo '${{ steps.metadata.outputs.json }}' | jq -r '.tags | map("--tag " + .) | join(" ")') \
137
+ $(echo '${{ steps.metadata.outputs.json }}' | jq -r '.annotation | map("--annotation " + .) | join(" ")') \
138
$(printf '${{ env.REGISTRY }}/${{ github.repository }}-${{ matrix.flavor }}@sha256:%s ' *)
139
- name: Inspect manifest and extract digest
140
id: inspect-manifest
0 commit comments