File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -152,9 +152,12 @@ jobs:
152152 - name : Download digests
153153 uses : actions/download-artifact@v4
154154 with :
155- path : digests
155+ path : /tmp/ digests
156156 pattern : digests-${{ matrix.variant }}-*
157157 merge-multiple : true
158+
159+ - name : Create folder if not exists
160+ run : mkdir -p /tmp/digests
158161
159162 - name : Set up Docker Buildx
160163 uses : docker/setup-buildx-action@v3
@@ -176,8 +179,8 @@ jobs:
176179 password : ${{ github.token }}
177180
178181 - name : Create manifest list and push
179- if : ( github.event_name == 'schedule' || inputs.push == true) && ${{ hashFiles('digests/') != '' }}
180- working-directory : digests
182+ if : github.event_name == 'schedule' || inputs.push == true
183+ working-directory : /tmp/ digests
181184 run : |
182185 docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
183186 $(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
You can’t perform that action at this time.
0 commit comments