fix(actions): android build

This commit is contained in:
edde746
2025-10-22 20:01:56 +02:00
parent 7f9cee4222
commit f3e91ba789
+6 -1
View File
@@ -49,7 +49,12 @@ android {
buildTypes {
release {
signingConfig = signingConfigs.getByName("release")
// Only use release signing if key.properties exists (not in CI/CD)
val keystorePropertiesFile = rootProject.file("key.properties")
if (keystorePropertiesFile.exists()) {
signingConfig = signingConfigs.getByName("release")
}
// If key.properties doesn't exist, it will use debug signing for CI builds
}
}
}