diff --git a/docs/RELEASE.md b/docs/RELEASE.md index e97307e..6a12d4e 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -11,7 +11,7 @@ runs on any Mac with no Gatekeeper warning and keeps every feature. *Developer ID Application*. 2. Store a notarization credential profile: ```sh - xcrun notarytool store-credentials MacTmuxKitNotary \ + xcrun notarytool store-credentials xw-notary \ --apple-id "you@example.com" --team-id "YOURTEAMID" \ --password "app-specific-password" # from appleid.apple.com > App-Specific Passwords ``` diff --git a/scripts/release.sh b/scripts/release.sh index 4feadd4..497be37 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -5,7 +5,7 @@ # 1. A "Developer ID Application" certificate in your keychain # (Xcode > Settings > Accounts > Manage Certificates > + > Developer ID Application). # 2. A stored notarization credential profile: -# xcrun notarytool store-credentials MacTmuxKitNotary \ +# xcrun notarytool store-credentials xw-notary \ # --apple-id "you@example.com" --team-id "TEAMID" \ # --password "app-specific-password" # appleid.apple.com > App-Specific Passwords # @@ -14,7 +14,7 @@ set -euo pipefail cd "$(dirname "$0")/.." -PROFILE="${NOTARY_PROFILE:-MacTmuxKitNotary}" +PROFILE="${NOTARY_PROFILE:-xw-notary}" # 1. Developer ID Application certificate. DEVID="$(security find-identity -v -p codesigning | sed -n 's/.*\"\(Developer ID Application[^\"]*\)\".*/\1/p' | head -1)"