Skip to content

Commit

Permalink
Notarize macOs build
Browse files Browse the repository at this point in the history
  • Loading branch information
pierr3 committed Apr 29, 2024
1 parent e0cea4a commit b90f58e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,6 @@ jobs:
- name: Package app
if: matrix.os == 'macos-latest'
run: npm run make -- --arch arm64

- name: Codesign on macos
if: matrix.os == 'macos-latest'
run: |
dmg_files=$(find "out/make/" -type f -name "*.dmg")
for dmg_file in $dmg_files; do
echo "Codesigning $dmg_file"
codesign --deep --force --verbose --sign "Developer ID Application" "$dmg_file"
done

- id: relinfo
uses: pozetroninc/github-action-get-latest-release@master
Expand Down
5 changes: 5 additions & 0 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ const config: ForgeConfig = {
name: "TrackAudio",
asar: true,
osxSign: {},
osxNotarize: {
appleId: process.env.APPLE_ID ?? "",
appleIdPassword: process.env.APPLE_NOTARIZATION_PASSWORD ?? "",
teamId: process.env.APPLE_TEAM_ID ?? "",
},
icon: "resources/AppIcon/AppIcon",
extraResource: [
"resources/AC_Bus_f32.wav",
Expand Down

0 comments on commit b90f58e

Please sign in to comment.