-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcodesign.env.example
More file actions
26 lines (23 loc) · 1.26 KB
/
codesign.env.example
File metadata and controls
26 lines (23 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# =============================================================================
# macOS Code Signing & Notarization Configuration
# =============================================================================
# Copy this file to codesign.env and fill in your values.
#
# Note: codesign.env contains only non-sensitive config (the public
# Developer ID identity string, the local Keychain profile name, and
# the public Team ID). The actual notarization credentials live in
# the macOS Keychain, set up via:
# xcrun notarytool store-credentials "<NOTARIZE_PROFILE>"
# It is therefore safe to commit codesign.env to the repo.
#
# Setup guide: see BUILD_MACOS.md → "Code Signing & Notarization"
# =============================================================================
# Developer ID Application certificate name (from Keychain Access).
# Find yours with: security find-identity -v -p codesigning
# Example: "Developer ID Application: Michael Beijer (ABC123DEF4)"
CODESIGN_IDENTITY="Developer ID Application: YOUR NAME (TEAMID)"
# Keychain profile name for notarytool credentials.
# Created via: xcrun notarytool store-credentials "supervertaler-notarize"
NOTARIZE_PROFILE="supervertaler-notarize"
# Apple Team ID (visible in your Apple Developer account).
TEAM_ID="TEAMID"