We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bcb904e + bb1ef8e commit e925e0fCopy full SHA for e925e0f
app/build.gradle
@@ -34,7 +34,7 @@ android {
34
// This prevents the build from failing during configuration phase
35
storeFile file("keystore.jks")
36
storePassword System.getenv("GHUI_KEYSTORE_PASSWORD")
37
- keyAlias System.getenv("GHUI_KEY_ALIAS") ?: "ghui"
+ keyAlias (System.getenv("GHUI_KEY_ALIAS") ?: "").trim().isEmpty() ? "ghui" : System.getenv("GHUI_KEY_ALIAS")
38
keyPassword System.getenv("GHUI_KEY_PASSWORD")
39
} else {
40
// For local builds without proper signing setup, throw an error
0 commit comments