Skip to content

Commit

Permalink
fix: download multiple artifact file
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton-byte committed Jan 14, 2024
1 parent bacb91e commit baa42d4
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Android
if-no-files-found: error
retention-days: 1
path: neonize/*.so
zig:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -105,8 +103,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Zig
if-no-files-found: error
retention-days: 1
path: |
neonize/*.so
neonize/*.dll
Expand Down Expand Up @@ -154,15 +150,15 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Linux
if-no-files-found: error
retention-days: 1
path: neonize/*.so
release:
runs-on: ubuntu-latest
needs: [android, zig, linux]
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: [Android, Linux, Zig]
- name: Upload shared library to draft release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit baa42d4

Please sign in to comment.