-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use maintained gon fork to address Apple signing deprecation (#1997)
Summary: Use maintained gon fork to address Apple signing deprecation This is a continuation of #1994. Rather than using the macos tools directly, we can continue using gon by switching to the maintained fork ([github.com/Bearer/gon](https://github.com/Bearer/gon)) Relevant Issues: Closes #1993 Type of change: /kind bugfix Test Plan: cli-release GitHub workflow [succeeds](https://github.com/pixie-io/pixie/actions/runs/10724342153/job/29740236170) when built from this branch Changelog Message: Fix macos signing for px cli releases --------- Signed-off-by: Dom Del Nano <[email protected]>
- Loading branch information
Showing
3 changed files
with
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,16 @@ | |
// using Gon. | ||
|
||
source = ["./cli_darwin_amd64", "./cli_darwin_arm64", "cli_darwin_universal"] | ||
bundle_id = "ai.pixielabs.px" | ||
bundle_id = "ai.getcosmic.px" | ||
|
||
// TODO(zasgar): Update this to the [email protected] account. It has access to the certs, | ||
// but does not have access to application passwords. | ||
apple_id { | ||
username = "[email protected]" | ||
password = "@env:AC_PASSWD" | ||
username = "[email protected]" | ||
# Password is provided via AC_PASSWORD env var | ||
provider = "769M9XJDG6" | ||
} | ||
|
||
sign { | ||
application_identity = "Developer ID Application: Pixie Labs Inc. (SZCNTABEXY)" | ||
application_identity = "Developer ID Application: Cosmic Observe, Inc." | ||
} | ||
|
||
zip { | ||
|