update workflow
All checks were successful
Release Build / build-docker (push) Successful in 19s
Release Build / build-android-and-release (push) Successful in 2m8s

This commit is contained in:
Rene Kievits
2025-12-24 08:45:42 +01:00
parent 1b112941a3
commit 0fc26f295c

View File

@@ -28,10 +28,16 @@ android {
storePassword "missing_password"
keyPassword "missing_password"
}
if (project.hasProperty("RELEASE_KEY_ALIAS")) {
keyAlias RELEASE_KEY_ALIAS
} else if (System.getenv("RELEASE_KEY_ALIAS") != null) {
keyAlias System.getenv("RELEASE_KEY_ALIAS")
} else {
keyAlias "my-key-alias"
}
}
}
}
buildTypes {
release {
signingConfig signingConfigs.release