Circleci branch deployment fix (#32)

- circleci Local testing
- circleci deployment fixed
- submodule circleci fix
This commit is contained in:
2023-08-05 16:39:35 +01:00
committed by GitHub
parent fa7ad37398
commit 4d00545fd3
6 changed files with 100 additions and 30 deletions

View File

@@ -10,6 +10,9 @@ def relStorePassword = System.getenv("RELEASE_STORE_PASSWORD")
def relKeyPassword = System.getenv("RELEASE_KEY_PASSWORD")
def relKeyAlias = System.getenv("RELEASE_KEY_ALIAS")
def keystorePath = System.getenv('PWD') + "/app/keystore.jks"
def keystore = file(keystorePath).exists() ? file(keystorePath) : null
android {
compileSdkVersion 31
defaultConfig {
@@ -40,7 +43,7 @@ android {
storePassword relStorePassword
keyPassword relKeyPassword
keyAlias relKeyAlias
storeFile file('./keystore')
storeFile keystore
}
}