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.
1 parent 1efd934 commit 9792932Copy full SHA for 9792932
build.gradle.kts
@@ -25,6 +25,9 @@ allprojects {
25
if (System.getenv("VERSION")==null) {
26
version = (File(project.rootDir, "config/version.txt").readText().trim() + "-SNAPSHOT")
27
}
28
+ else if (System.getenv("VERSION").endsWith("-SNAPSHOT")) {
29
+ version = System.getenv("VERSION")
30
+ }
31
else {
32
version = System.getenv("VERSION") + "-" + File(project.rootDir, "config/version-qualifier.txt").readText().trim()
33
0 commit comments