Skip to content

Commit

Permalink
ci: fix release artifacts processing
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Dec 13, 2024
1 parent 40ae73f commit cfe059d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: ${{ env.DIGEST_NAME }}
name: ${{ env.DIGEST_NAME }}-${{ matrix.platform }}
path: ${{ env.DIGEST_DIR_PATH }}/*
if-no-files-found: error
retention-days: 1
Expand All @@ -93,10 +93,11 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Download digests
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.DIGEST_NAME }}
pattern: ${{ env.DIGEST_NAME }}*
path: ${{ env.DIGEST_DIR_PATH }}
merge-multiple: true

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit cfe059d

Please sign in to comment.