Skip to content

Commit

Permalink
Update electron.yml - add env conf for 'Notarize' step
Browse files Browse the repository at this point in the history
  • Loading branch information
esserhr authored Feb 19, 2024
1 parent 3ab3771 commit eb911b4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ jobs:
- name: Package [Mac]
run: npm run dist-nopublish
- name: Notarize
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SECRET: ${{ secrets.APPLE_APP_SECRET }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: |
xcrun notarytool submit --wait --apple-id "$APPLE_ID" --password "$APPLE_APP_SECRET" --team-id "$APPLE_TEAM_ID" $(find ../output -name "VERIFI-*.*.*.dmg")
xcrun stapler staple $(find ../output -name "VERIFI-*.*.*.dmg")
Expand Down

0 comments on commit eb911b4

Please sign in to comment.