Skip to content

Commit

Permalink
cleanup github action
Browse files Browse the repository at this point in the history
  • Loading branch information
vsandstrom committed Sep 1, 2024
1 parent 1bab90f commit 3bc3d2a
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/compile_plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,25 @@ jobs:
- name: compile intel mac and zip
run: |
cargo xtask bundle havregryn --target=x86_64-apple-darwin --release
zip -r Havregryn_macOS_intel.vst3.zip ${DIR}Havregryn.vst3
cd ${DIR}
zip -r Havregryn_macOS_intel.vst3.zip Havregryn.vst3
cd -
- name: compile arm mac and zip
run: |
cargo xtask bundle havregryn --target=aarch64-apple-darwin --release
zip -r Havregryn_macOS_arm.vst3.zip ${DIR}Havregryn.vst3
cargo xtask bundle havregryn --target=aarch64-apple-darwin --release
cd ${DIR}
zip -r Havregryn_macOS_arm.vst3.zip Havregryn.vst3
cd -
- name: compile windows and zip
run: |
cargo xtask bundle havregryn --target=x86_64-pc-windows-gnu --release
zip -r Havregryn_Win.vst3.zip ${DIR}Havregryn.vst3
cargo xtask bundle havregryn --target=x86_64-pc-windows-gnu --release
cd ${DIR}
zip -r Havregryn_Win.vst3.zip Havregryn.vst3
cd -
- name: create release
uses: ncipollo/release-action@v1
with:
artifacts: 'Havregryn_macOS_intel.vst3.zip, Havregryn_macOS_arm.vst3.zip, Havregryn_Win.vst3.zip'
artifacts: '/Users/runner/work/Havregryn/Havregryn/target/bundled/Havregryn_macOS_intel.vst3.zip, /Users/runner/work/Havregryn/Havregryn/target/bundled/Havregryn_macOS_arm.vst3.zip, /Users/runner/work/Havregryn/Havregryn/target/bundled/Havregryn_Win.vst3.zip'

0 comments on commit 3bc3d2a

Please sign in to comment.