Skip to content

Commit

Permalink
Add APPLE_TEAM_ID
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasDorier committed Dec 5, 2023
1 parent 9839b6e commit 4d02f0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Build/CI/applesign.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This document how to setup your travis environment so that it can properly sign

At the end of this process, you will have configured `APPLE_DEV_ID_CERT` and `APPLE_DEV_ID_CERT_PASSWORD` to the correct value for travis to sign your MAC application.

You will also need to set `APPLE_ID` and `APPLE_ID_PASSWORD`, using [app-specific password](https://support.apple.com/en-us/HT204397).
You will also need to set `APPLE_ID`, `APPLE_ID_PASSWORD` and `APPLE_TEAM_ID`, using [app-specific password](https://support.apple.com/en-us/HT204397).

## How to
If you are on linux and try to sign with an apple certificate you need to do the following steps:
Expand Down
2 changes: 1 addition & 1 deletion Build/CI/applesign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ echo "DMG signed"

echo "Notarize $dmg_file with bundle id $bundle_id"

sudo xcrun notarytool submit --apple-id "$APPLE_ID" --password "$APPLE_ID_PASSWORD" --wait "$dmg_file"
sudo xcrun notarytool submit --apple-id "$APPLE_ID" --password "$APPLE_ID_PASSWORD" --team-id "$APPLE_TEAM_ID" --wait "$dmg_file"

sudo xcrun stapler staple "$dmg_file"

Expand Down

0 comments on commit 4d02f0f

Please sign in to comment.