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 9b3fccc commit cb6d7e2Copy full SHA for cb6d7e2
.github/workflows/docker_crossbuild_publish.yml
@@ -95,7 +95,11 @@ jobs:
95
with:
96
path: ${{ runner.temp }}/digests
97
pattern: digests-*
98
- # merge-multiple: true
+ merge-multiple: true
99
+
100
+ - name: check digests
101
+ run: |
102
+ ls -la ${{ runner.temp }}/digests
103
104
- name: Set up Docker Buildx
105
uses: docker/setup-buildx-action@v3
@@ -118,6 +122,7 @@ jobs:
118
122
- name: Create manifest list and push
119
123
working-directory: ${{ runner.temp }}/digests
120
124
run: |
125
+ echo $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")
121
126
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
127
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
128
0 commit comments