-
-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 1.25 KB
/
Copy path.env.example
File metadata and controls
30 lines (24 loc) · 1.25 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
27
28
29
30
# Copy this to .env (gitignored) and fill in. Sourced by build scripts.
# Your Developer ID Application certificate, exactly as shown by:
# security find-identity -v -p codesigning
# e.g. "Developer ID Application: Darryl Morley (ABCDE12345)"
DEVELOPER_ID=""
# Notarytool keychain profile name. Create it once with:
# xcrun notarytool store-credentials "WhatCable-notary" \
# --apple-id "you@example.com" \
# --team-id "ABCDE12345" \
# --password "<app-specific-password>"
# (Generate the app-specific password at appleid.apple.com.)
NOTARY_PROFILE="WhatCable-notary"
# --- Homebrew cask bump (optional, used by scripts/bump-cask.sh) ---
# Path to a local clone of the homebrew-whatcable tap. When set, build-app.sh
# updates the cask's version + sha256 after notarisation. Leave unset to skip.
# TAP_DIR="$HOME/Projects/personal/homebrew-whatcable"
# Set to 1 to git-push the cask bump automatically. Default 0 = local commit only.
# CASK_AUTOPUSH="0"
# Set to 1 to verify the GitHub release asset's sha256 matches the local zip
# before bumping. Useful after publishing a release; not useful before.
# CASK_VERIFY_REMOTE="0"
# Set to 1 (with CASK_VERIFY_REMOTE=1) to treat a missing release asset as
# fatal rather than a warning.
# CASK_VERIFY_STRICT="0"