fix(ci): Try use path that exists

This commit is contained in:
Jade Ellis 2025-12-21 18:50:48 +00:00
parent bf91ce5c7f
commit 71094803f1
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -32,11 +32,13 @@ outputs:
runs: runs:
using: composite using: composite
steps: steps:
- run: mkdir -p digests
shell: bash
- name: Download digests - name: Download digests
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }} if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
uses: forgejo/download-artifact@v4 uses: forgejo/download-artifact@v4
with: with:
path: /tmp/digests path: digests
pattern: ${{ inputs.digest_pattern }} pattern: ${{ inputs.digest_pattern }}
merge-multiple: true merge-multiple: true
@ -78,7 +80,7 @@ runs:
- name: Create manifest list and push - name: Create manifest list and push
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }} if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
working-directory: /tmp/digests working-directory: digests
shell: bash shell: bash
env: env:
IMAGES: ${{ inputs.images }} IMAGES: ${{ inputs.images }}