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 93a6dff commit 5032838Copy full SHA for 5032838
.github/workflows/docker.yaml
@@ -117,4 +117,7 @@ jobs:
117
if: startsWith(github.ref, 'refs/tags/v')
118
working-directory: /tmp/digests
119
run: |
120
- docker buildx imagetools create --tag "${{ steps.meta.outputs.tags }}"" $(printf '${{ matrix.target.image }}@sha256:%s ' *)
+ TAGS=$(echo "${{ steps.meta.outputs.tags }}" | tr '\n' ' ')
121
+ for TAG in $TAGS; do
122
+ docker buildx imagetools create --tag "$TAG" $(printf '${{ matrix.target.image }}@sha256:%s ' *);
123
+ done
0 commit comments