-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modified docs to reflect the correct password syntax for the `gon-sig…
…n.json` file (#3620) * fix: docs macOS signing password syntax * fix: docs macOS signing password syntax --------- Co-authored-by: Lea Anthony <[email protected]>
- Loading branch information
1 parent
87b1325
commit 1a23102
Showing
2 changed files
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -254,7 +254,7 @@ Now we need to configure some gon config files in our `build/darwin` directory: | |
"bundle_id": "app.myapp", | ||
"apple_id": { | ||
"username": "[email protected]", | ||
"password": "@env:APPLE_PASSWORD", | ||
"password": "your-app-specific-password", | ||
"provider": "ABCDE12345" | ||
}, | ||
"sign": { | ||
|
@@ -268,11 +268,13 @@ Here is a brief break down of the above fields: | |
- `source`: The location of your wails binary to be signed | ||
- `apple_id`: | ||
- `username`: Your Apple ID email address | ||
- `password`: Your app-specific password, referenced using Gon's environment variable syntax | ||
- `password`: Your app-specific password | ||
- `provider`: Your team ID for your App Store Connect account | ||
- `sign`: | ||
- `application_identity`: Your Apple developer identity | ||
|
||
The (https://developer.apple.com/documentation/technotes/tn3147-migrating-to-the-latest-notarization-tool)[deprecated Apple's altool]'s syntax supporting `@env:` is no longer available since Apple has migrated to the new notarytool. | ||
|
||
Your developer identity and team ID can both by found on macOS by running the following command: | ||
|
||
```bash | ||
|
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