mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-05-06 18:36:41 +02:00
13 lines
612 B
Bash
13 lines
612 B
Bash
|
|
# macOS code signing + notarization for `pnpm tauri build`.
|
|
# Loaded into the build environment via scripts/run-with-env.mjs (and direnv via .envrc).
|
|
# APPLE_SIGNING_IDENTITY: the exact name of your Developer ID Application
|
|
# certificate as it appears in `security find-identity -v -p codesigning`.
|
|
# Example: "Developer ID Application: Your Name (TEAMID)"
|
|
# APPLE_ID + APPLE_PASSWORD + APPLE_TEAM_ID: credentials for notarytool.
|
|
# APPLE_PASSWORD must be an app-specific password from appleid.apple.com,
|
|
# not your real Apple ID password.
|
|
APPLE_TEAM_ID=
|
|
APPLE_ID=
|
|
APPLE_PASSWORD=
|
|
APPLE_SIGNING_IDENTITY= |