Skip to content

Commit

Permalink
fix: upload-artifact v4 break changes
Browse files Browse the repository at this point in the history
upload-artifact v4 can't upload artifact to same name

Signed-off-by: Yadong Ding <[email protected]>
  • Loading branch information
Desiki-high authored and imeoer committed Jan 19, 2024
1 parent 5f26f8e commit 3f47f1e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
- name: store-artifacts
uses: actions/upload-artifact@v4
with:
name: nydus-artifacts-linux-${{ matrix.arch }}
name: nydus-artifacts-linux-${{ matrix.arch }}-contrib
path: |
ctr-remote
nydusify
Expand All @@ -124,7 +124,8 @@ jobs:
- name: download artifacts
uses: actions/download-artifact@v4
with:
name: nydus-artifacts-${{ matrix.os }}-${{ matrix.arch }}
pattern: nydus-artifacts-${{ matrix.os }}-${{ matrix.arch }}*
merge-multiple: true
path: nydus-static
- name: prepare release tarball
run: |
Expand Down

0 comments on commit 3f47f1e

Please sign in to comment.