Skip to content

Commit

Permalink
Update rust.yml workflow with proper MacOS Build as well as bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
ardura authored Apr 23, 2024
1 parent 5390b69 commit 5343e9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ env:

jobs:
build_macos:
runs-on: macos-latest
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Subhoofer --profile release
- uses: actions/upload-artifact@v4
with:
name: macos_build
path: target/bundled/Subhoofer.vst3
path: target/bundled/*
if-no-files-found: warn
build_linux:
runs-on: ubuntu-latest
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: linux_build
path: target/bundled/Subhoofer.vst3
path: target/bundled/*
if-no-files-found: warn
build_windows:
runs-on: windows-latest
Expand All @@ -45,5 +45,5 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: windows_build
path: target/bundled/Subhoofer.vst3
path: target/bundled/*
if-no-files-found: warn

0 comments on commit 5343e9d

Please sign in to comment.