Skip to content

Commit

Permalink
Add codesigning for macOS vst3
Browse files Browse the repository at this point in the history
  • Loading branch information
p42ul authored Apr 12, 2024
1 parent 5324cd7 commit 1fb85b7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,18 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Import Certificates
if: matrix.os == 'macos-latest'
uses: apple-actions/import-codesign-certs@v2
with:
p12-file-base64: ${{ secrets.DEV_ID_APP_CERT }}
p12-password: ${{ secrets.DEV_ID_APP_CERT_PASSWORD }}
- name: Bundle resotool (macOS)
if: matrix.os == 'macos-latest'
run: rustup target add aarch64-apple-darwin && cargo xtask bundle-universal resotool --release
- name: Codesign resotool (macOS)
if: matrix.os == 'macos-latest'
run: codesign --force -s "${{ secrets.DEV_ID_APP}}" -v ./target/bundled/Resotool.vst3 --deep --strict --options=runtime --timestamp
- name: Bundle resotool (Windows and Linux)
if: matrix.os != 'macos-latest'
run: cargo xtask bundle resotool --release
Expand Down

0 comments on commit 1fb85b7

Please sign in to comment.