Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
Expand All @@ -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)"
Expand Down
Loading