We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb46795 commit 430860fCopy full SHA for 430860f
docs/packaging.md
@@ -26,3 +26,20 @@ You can debug your production build with devtools by simply setting the `DEBUG_P
26
```bash
27
npx cross-env DEBUG_PROD=true npm run package
28
```
29
+
30
+## Notarizing
31
32
+To notarize your macOS app, you will need to set the following environment variables:
33
34
+- `APPLE_ID` - Your Apple ID
35
+- `APPLE_APP_SPECIFIC_PASSWORD` - Your Apple ID password
36
37
+In `package.json` -> `build` -> `mac` the `teamId` key needs to be set:
38
39
+```
40
+"notarize": {
41
+ "teamId": "YOUR_TEAM_ID"
42
+}
43
44
45
+This above config will automatically get electron-builder to notarize the build.
0 commit comments