We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
CI
1 parent 494744e commit dafc6d4Copy full SHA for dafc6d4
build.sbt
@@ -25,7 +25,7 @@ inThisBuild(List(
25
def dynVer(out: sbtdynver.GitDescribeOutput): String = {
26
def tagVersion = out.ref.dropPrefix
27
if (out.isCleanAfterTag) tagVersion
28
- else if (System.getProperty("CI") == null) s"$tagVersion-next-SNAPSHOT" // modified for local builds
+ else if (System.getenv("CI") == null) s"$tagVersion-next-SNAPSHOT" // modified for local builds
29
else if (out.commitSuffix.distance == 0) tagVersion
30
else if (sys.props.contains("backport.release")) tagVersion
31
else curVersion
0 commit comments