Compare commits

...

1 commit

Author SHA1 Message Date
a20602f671 Plain tags for development branches.
Some checks failed
Java CI with Gradle / build (push) Has been cancelled
2024-06-01 11:54:23 +02:00

View file

@ -21,7 +21,8 @@ scmVersion {
} }
var p = shortened.replace('.', '-') + "-" var p = shortened.replace('.', '-') + "-"
if (grgit.branch.current.name != "main" if (grgit.branch.current.name != "main"
&& !grgit.branch.current.name.startsWith("release")) { && !grgit.branch.current.name.startsWith("release")
&& !grgit.branch.current.name.startsWith("develop")) {
p = p + grgit.branch.current.name.replace('/', '-') + "-" p = p + grgit.branch.current.name.replace('/', '-') + "-"
} }
prefix = p prefix = p