Skip to content

Commit

Permalink
fix(release): GitHub Action for releasing tagged commits now works. (#16
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Burtan authored Apr 28, 2024
1 parent c2a9c1d commit e5451f9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,18 @@ jobs:
if: github.ref_type == 'tag'
runs-on: ubuntu-latest
steps:
- uses: Shopify/upload-to-release@v1
- uses: actions/download-artifact@v4
with:
name: Linux x86_x64
path: builddir/reaper_livepresets_x86_64.so
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: Shopify/upload-to-release@v1
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:
name: Windows x86_x64
path: builddir/reaper_livepresets_x64.dll
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: Shopify/upload-to-release@v1
- uses: softprops/action-gh-release@v2
with:
name: MacOS Arm64
path: builddir/reaper_livepresets_aarch64.dylib
repo-token: ${{ secrets.GITHUB_TOKEN }}
files:
builddir/reaper_livepresets_x86_64.so
builddir/reaper_livepresets_x64.dll
builddir/reaper_livepresets_aarch64.dylib

0 comments on commit e5451f9

Please sign in to comment.