27 lines
959 B
Bash
27 lines
959 B
Bash
# Copy to scripts/release.local.env and fill real values.
|
|
|
|
# Required for signed local releases.
|
|
# Use the full certificate common name shown by:
|
|
# security find-identity -v -p codesigning
|
|
# Example:
|
|
# DEVELOPER_ID_APPLICATION="Developer ID Application: Your Name (TEAMID)"
|
|
DEVELOPER_ID_APPLICATION="Developer ID Application: Your Name (TEAMID)"
|
|
|
|
# Optional but recommended for notarized releases.
|
|
# Create once with:
|
|
# xcrun notarytool store-credentials "MacTools-Notary" \
|
|
# --apple-id "your@appleid.com" \
|
|
# --team-id "TEAMID" \
|
|
# --password "app-specific-password"
|
|
APPLE_NOTARY_PROFILE="MacTools-Notary"
|
|
|
|
# Required only when publishing to GitHub Releases.
|
|
GITHUB_REPOSITORY="owner/MacTools"
|
|
|
|
# Optional overrides.
|
|
# DMG_VOLUME_NAME="MacTools"
|
|
# DMG_SIGNING_IDENTIFIER="com.example.mactools.disk-image"
|
|
# GITHUB_RELEASE_NOTES_FILE="/absolute/path/to/release-notes.md"
|
|
# SPARKLE_KEYCHAIN_ACCOUNT="ed25519"
|
|
# SPARKLE_MINIMUM_SYSTEM_VERSION="14.0"
|