Skip to content

Commit

Permalink
upload docker manifest using different filenames
Browse files Browse the repository at this point in the history
  Uploading different artifacts using the same filename is no longer supported with actions/upload-artifact v4
  • Loading branch information
KtorZ committed Feb 4, 2025
1 parent caa4ccb commit 01b23cc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ jobs:
if: ${{ github.event_name == 'push' }}
uses: actions/upload-artifact@v4
with:
name: digests
name: digests-${{ matrix.arch == 'x86_64' && 'amd64' || 'arm64' }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
Expand All @@ -600,10 +600,16 @@ jobs:
matrix:
target: [ ogmios ]
steps:
- name: 📥 Download digests
- name: 📥 Download digests (amd)
uses: actions/download-artifact@v4
with:
name: digests
name: digests-amd64
path: /tmp/digests

- name: 📥 Download digests (arm)
uses: actions/download-artifact@v4
with:
name: digests-arm64
path: /tmp/digests

- name: 🧰 Set up Docker Buildx
Expand Down

0 comments on commit 01b23cc

Please sign in to comment.