-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #899 from electron-userland/notarize-support
feat: add support for Mojave app notarization
- Loading branch information
Showing
9 changed files
with
142 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,6 +82,13 @@ osx-sign (OSX host platform only) Whether to sign the OSX app packages | |
- identity: should contain the identity to be used when running `codesign` | ||
- entitlements: the path to entitlements used in signing | ||
- entitlements-inherit: the path to the 'child' entitlements | ||
osx-notarize (OSX host platform only, requires --osx-sign) Whether to notarize the OSX app | ||
packages. You must use dot notation to configure a list of sub-properties, e.g. | ||
--osx-notarize.appleId="[email protected]" | ||
For info on supported values see https://github.com/electron-userland/electron-notarize#method-notarizeopts-promisevoid | ||
Properties supported: | ||
- appleId: should contain your apple ID username / email | ||
- appleIdPassword: should contain the password for the provided apple ID | ||
protocol URL protocol scheme to register the app as an opener of. | ||
For example, `--protocol=myapp` would register the app to open | ||
URLs such as `myapp://path`. This argument requires a `--protocol-name` | ||
|