Fix names of keystore properties

This commit is contained in:
Kirill Kamakin
2021-11-20 11:21:27 +03:00
parent e13dc709f3
commit 643d886688
2 changed files with 3 additions and 3 deletions

View File

@@ -40,8 +40,8 @@ assembleRelease:
needs: [ "checkApp" ]
script:
- echo "$MEALIE_KEY_STORE" | base64 -d > app/mealie-release-key.jks
- echo "keystorePath=mealie-release-key.jks" > keystore.properties
- echo "keystorePassword=$MEALIE_KEY_STORE_PASSWORD" >> keystore.properties
- echo "storeFile=mealie-release-key.jks" > keystore.properties
- echo "storePassword=$MEALIE_KEY_STORE_PASSWORD" >> keystore.properties
- echo "keyAlias=$MEALIE_KEY_ALIAS" >> keystore.properties
- echo "keyPassword=$MEALIE_KEY_PASSWORD" >> keystore.properties
- ./gradlew assembleRelease

View File

@@ -20,7 +20,7 @@ android {
signingConfigs {
release {
file("../keystore.properties").with { keystorePropertiesFile ->
rootProject.file("keystore.properties").with { keystorePropertiesFile ->
if (keystorePropertiesFile.canRead()) {
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))