Skip to content

Commit cfe059d

Browse files
committed
ci: fix release artifacts processing
1 parent 40ae73f commit cfe059d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release-docker-image.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: Upload digest
8383
uses: actions/upload-artifact@v4
8484
with:
85-
name: ${{ env.DIGEST_NAME }}
85+
name: ${{ env.DIGEST_NAME }}-${{ matrix.platform }}
8686
path: ${{ env.DIGEST_DIR_PATH }}/*
8787
if-no-files-found: error
8888
retention-days: 1
@@ -93,10 +93,11 @@ jobs:
9393
runs-on: ubuntu-24.04
9494
steps:
9595
- name: Download digests
96-
uses: actions/download-artifact@v3
96+
uses: actions/download-artifact@v4
9797
with:
98-
name: ${{ env.DIGEST_NAME }}
98+
pattern: ${{ env.DIGEST_NAME }}*
9999
path: ${{ env.DIGEST_DIR_PATH }}
100+
merge-multiple: true
100101

101102
- name: Set up Docker Buildx
102103
uses: docker/setup-buildx-action@v3

0 commit comments

Comments
 (0)