diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 18252aa69..f6996dacd 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -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 @@ -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