17 lines
582 B
Bash
17 lines
582 B
Bash
# Environment variables for Meetingnotes code signing and notarization
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Your Developer ID Application certificate name (from Keychain)
|
|
# Run: security find-identity -v -p codesigning | grep "Developer ID Application"
|
|
DEVELOPER_ID="developer-id"
|
|
|
|
# Your Apple ID email address
|
|
APPLE_ID="[email protected]"
|
|
|
|
# Your Apple Developer Team ID
|
|
TEAM_ID="team-id"
|
|
|
|
# App-specific password for notarization
|
|
# Generate at: https://appleid.apple.com/account/manage -> App-Specific Passwords
|
|
APP_PASSWORD="your-app-specific-password"
|