Updated to circleci (#31)

circleci config.yml updated
This commit is contained in:
2023-07-29 17:46:08 +01:00
committed by GitHub
parent ff9777fb78
commit fa7ad37398
6 changed files with 46 additions and 70 deletions

View File

@@ -9,7 +9,6 @@ plugins {
def relStorePassword = System.getenv("RELEASE_STORE_PASSWORD")
def relKeyPassword = System.getenv("RELEASE_KEY_PASSWORD")
def relKeyAlias = System.getenv("RELEASE_KEY_ALIAS")
def relStoreFile = System.getenv("RELEASE_KEYSTORE")
android {
compileSdkVersion 31
@@ -41,7 +40,7 @@ android {
storePassword relStorePassword
keyPassword relKeyPassword
keyAlias relKeyAlias
storeFile file(relStoreFile)
storeFile file('./keystore')
}
}