We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f37a1e6 commit 2ab801cCopy full SHA for 2ab801c
2 files changed
build.gradle
@@ -30,8 +30,9 @@ allprojects {
30
group = 'com.optimizely.ab'
31
32
def github_tagged_version = System.getenv('GITHUB_TAG')
33
- // keep SNAPSHOT for fallback for local build version
34
- version = github_tagged_version ?: '0.0.0-SNAPSHOT'
+ if (github_tagged_version != null) {
+ version = github_tagged_version
35
+ }
36
37
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
38
}
gradle.properties
@@ -1,3 +1,7 @@
1
+# Maven version
2
+# - keep SNAPSHOT for fallback for local build version
3
+version = 0.0.0-SNAPSHOT
4
+
5
# Artifact paths
6
mavenS3Bucket = optimizely-maven
7
0 commit comments