-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace gon macos signing with notarytool
Signed-off-by: Dom Del Nano <[email protected]>
- Loading branch information
Showing
3 changed files
with
7 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,13 @@ done | |
# Create a universal binary. | ||
lipo -create -output cli_darwin_universal cli_darwin_arm64 cli_darwin_amd64 | ||
|
||
gon ci/gon.hcl | ||
export TEAM_ID="SZCNTABEXY" | ||
export APP_IDENTITY="Developer ID Application: Pixie Labs Inc. (${TEAM_ID})" | ||
codesign -f -v --timestamp --options runtime -s "${APP_IDENTITY}" cli_darwin_universal cli_darwin_arm64 cli_darwin_amd64 | ||
|
||
notarytool submit cli_darwin_universal --apple-id [email protected] --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --bundle-id ai.pixielabs.px --progress --verbose --wait | ||
notarytool submit cli_darwin_amd64 --apple-id [email protected] --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --bundle-id ai.pixielabs.px --progress --verbose --wait | ||
notarytool submit cli_darwin_arm64 --apple-id [email protected] --password "${AC_PASSWD}" --team-id "${TEAM_ID}" --bundle-id ai.pixielabs.px --progress --verbose --wait | ||
|
||
cp cli_darwin_universal "${artifacts_dir}" | ||
cp cli_darwin_amd64 "${artifacts_dir}" | ||
|
This file was deleted.
Oops, something went wrong.