From d3e43831e39440ab32e6d5efd76209c2e2bc4a3f Mon Sep 17 00:00:00 2001 From: Frederik Bertling Date: Sun, 28 Apr 2024 11:06:18 +0200 Subject: [PATCH] fix(release): Fixed using wrong Github Actions release version Signed-off-by: Frederik Bertling --- .github/workflows/ci.yaml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 085f6c9..a5b2f7c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -60,18 +60,9 @@ jobs: #if: github.ref_type == 'tag' runs-on: ubuntu-latest steps: - - uses: Shopify/upload-to-release@v2.0.0 + - uses: softprops/action-gh-release@v2 with: - name: Linux x86_x64 - path: builddir/reaper_livepresets_x86_64.so - repo-token: ${{ secrets.GITHUB_TOKEN }} - - uses: Shopify/upload-to-release@v2.0.0 - with: - name: Windows x86_x64 - path: builddir/reaper_livepresets_x64.dll - repo-token: ${{ secrets.GITHUB_TOKEN }} - - uses: Shopify/upload-to-release@v2.0.0 - with: - name: MacOS Arm64 - path: builddir/reaper_livepresets_aarch64.dylib - repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + files: + builddir/reaper_livepresets_x86_64.so + builddir/reaper_livepresets_x64.dll + builddir/reaper_livepresets_aarch64.dylib \ No newline at end of file