29 lines
956 B
Bash
29 lines
956 B
Bash
# Copy this file to secrets.env and fill in real values.
|
|
# Then encrypt to secrets.age: scripts/secrets-encrypt.sh
|
|
#
|
|
# secrets.env — plaintext, git-ignored
|
|
# secrets.age — encrypted, committed to the repository
|
|
# .age-public-key — age public key, committed (not secret)
|
|
#
|
|
# Multi-line values (SSH keys, certificates) must be stored as a single line
|
|
# with literal \n for newlines, wrapped in double quotes. Example:
|
|
# SSH_PRIVATE_KEY="<header line>\n<base64 body lines>\n<footer line>"
|
|
#
|
|
# One-time setup:
|
|
# age-keygen -o ~/.config/age/sharedinbox.key
|
|
# age-keygen -y ~/.config/age/sharedinbox.key > .age-public-key
|
|
# # Store the private key content in CI as SECRETS_AGE_KEY secret.
|
|
|
|
ANDROID_KEYSTORE_BASE64=
|
|
ANDROID_KEYSTORE_PASSWORD=
|
|
PLAY_STORE_CONFIG_JSON=
|
|
SSH_PRIVATE_KEY=
|
|
SSH_KNOWN_HOSTS=
|
|
SSH_USER=
|
|
SSH_HOST=
|
|
ANDROID_APK_SCP_HOST=
|
|
ANDROID_APK_SCP_USER=
|
|
ANDROID_APK_SCP_PATH=
|
|
FIREBASE_TEST_LAB_SERVICE_ACCOUNT_KEY=
|
|
FIREBASE_PROJECT_ID=
|