Skip to content

Commit

Permalink
fix(actions): Artifact names now match their file names
Browse files Browse the repository at this point in the history
Signed-off-by: Frederik Bertling <Frederik.Bertling@gmail.com>
  • Loading branch information
Burtan committed Apr 28, 2024
1 parent a73d248 commit 1c5300e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@ jobs:
- linux
- windows
- macos
#if: github.ref_type == 'tag'
if: github.ref_type == 'tag'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
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
- uses: softprops/action-gh-release@v2
with:
files:
artifacts/reaper_livepresets_x86_64.so
artifacts/reaper_livepresets_x64.dll
artifacts/reaper_livepresets_aarch64.dylib

0 comments on commit 1c5300e

Please sign in to comment.