Skip to content

Commit

Permalink
fix(actions): Artifact names now match their file names (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Burtan authored Apr 28, 2024
1 parent 01d58bf commit 8774c9f
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,12 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
path: builddir/reaper_livepresets_x86_64.dll
- uses: actions/download-artifact@v4
with:
path: builddir/reaper_livepresets_aarch64.dll
- uses: actions/download-artifact@v4
with:
path: builddir/reaper_livepresets_x64.dll
path: artifacts
merge-multiple: true
- run: ls -R artifacts
- uses: softprops/action-gh-release@v2
with:
files:
builddir/reaper_livepresets_x86_64.so
builddir/reaper_livepresets_x64.dll
builddir/reaper_livepresets_aarch64.dylib
artifacts/reaper_livepresets_x86_64.so
artifacts/reaper_livepresets_x64.dll
artifacts/reaper_livepresets_aarch64.dylib

0 comments on commit 8774c9f

Please sign in to comment.