From 1c5300ec4d84278e89ccc92942993981484cf1d2 Mon Sep 17 00:00:00 2001 From: Frederik Bertling Date: Sun, 28 Apr 2024 17:46:53 +0200 Subject: [PATCH] fix(actions): Artifact names now match their file names Signed-off-by: Frederik Bertling --- .github/workflows/ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5c578b0..09f8fbd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -57,7 +57,7 @@ jobs: - linux - windows - macos - #if: github.ref_type == 'tag' + if: github.ref_type == 'tag' runs-on: ubuntu-latest steps: - uses: actions/download-artifact@v4 @@ -65,9 +65,9 @@ jobs: 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 \ No newline at end of file + - uses: softprops/action-gh-release@v2 + with: + files: + artifacts/reaper_livepresets_x86_64.so + artifacts/reaper_livepresets_x64.dll + artifacts/reaper_livepresets_aarch64.dylib \ No newline at end of file