cd: improve release workflow w/nightly

This commit is contained in:
Zane Schepke
2024-07-27 04:15:57 -04:00
parent 7a2d96fcd7
commit ebf7521fa1
8 changed files with 221 additions and 249 deletions
+7 -3
View File
@@ -22,13 +22,17 @@ android {
"proguard-rules.pro",
)
}
create("nightly") {
initWith(getByName("release"))
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = Constants.JVM_TARGET
}
}