fix: shell variable substitution statements

This commit is contained in:
Rainer Killinger
2022-03-21 13:51:49 +01:00
parent ec8b553d2b
commit 87323e70cf
2 changed files with 10 additions and 10 deletions

View File

@@ -22,7 +22,7 @@ APPLE_API_KEY_ISSUER_ID="1234578-1234-1234-1234-12345678901" # Your API key i
# Provide the following environment variable in a secure fashion.
# When used in CI protect and mask the variable.
# Don't change the following line!
APPLE_API_KEY_CONTENT="${APPLE_API_KEY_CONTENT:-'unset'}" # Base64 encoded contents of Apple API key file (.p8 file)
APPLE_API_KEY_CONTENT="${APPLE_API_KEY_CONTENT:-"unset"}" # Base64 encoded contents of Apple API key file (.p8 file)
# Android specific configuration
@@ -32,7 +32,7 @@ ANDROID_PACKAGE_NAME="de.anyschool.app.android" # Your
# Provide the following environment variables in a secure fashion.
# When used in CI protect and mask the variables.
# Don't change the following lines!
ANDROID_API_KEY_CONTENT="${ANDROID_API_KEY_CONTENT:-'unset'}" # Base64 encoded contents of your API key file (.json file)
ANDROID_KEYSTORE_PASSWORD="${ANDROID_KEYSTORE_PASSWORD:-'unset'}" # Passwort to your keyfile
ANDROID_KEYSTORE_KEY_ALIAS="${ANDROID_KEYSTORE_KEY_ALIAS:-'unset'}" # Name/Alias of the key used for signing within the keyfile
ANDROID_KEYSTORE_KEY_PASSWORD="${ANDROID_KEYSTORE_KEY_PASSWORD:-'unset'}" # Passwort to the this very key
ANDROID_API_KEY_CONTENT="${ANDROID_API_KEY_CONTENT:-"unset"}" # Base64 encoded contents of your API key file (.json file)
ANDROID_KEYSTORE_PASSWORD="${ANDROID_KEYSTORE_PASSWORD:-"unset"}" # Passwort to your keyfile
ANDROID_KEYSTORE_KEY_ALIAS="${ANDROID_KEYSTORE_KEY_ALIAS:-"unset"}" # Name/Alias of the key used for signing within the keyfile
ANDROID_KEYSTORE_KEY_PASSWORD="${ANDROID_KEYSTORE_KEY_PASSWORD:-"unset"}" # Passwort to the this very key