Skip to content

Commit

Permalink
Specify apple team ID for notarization
Browse files Browse the repository at this point in the history
  • Loading branch information
tadaskay committed Dec 19, 2023
1 parent 671d4e2 commit a26c9cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ jobs:
env:
APPLEID: ${{ secrets.APPLEID }}
APPLEIDPASS: ${{ secrets.APPLEIDPASS }}
APPLETEAMID: ${{ secrets.APPLETEAMID }}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ Pre-requisites:
Required env variables (macOS):
- APPLEID
- APPLEIDPASS (generate an app-specific password for this)
- APPLETEAMID

```
yarn bundle
Expand Down
1 change: 1 addition & 0 deletions ci/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@ exports.default = async function notarizing(context) {
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLEID,
appleIdPassword: process.env.APPLEIDPASS,
teamId: process.env.APPLETEAMID,
})
}

0 comments on commit a26c9cf

Please sign in to comment.