Compare commits
9
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
87e7d7c4fe | ||
|
|
ec87089310 | ||
|
|
d8478ebb01 | ||
|
|
600adc81b5 | ||
|
|
ddac2870af | ||
|
|
8d9c8c1394 | ||
|
|
b59c3bcb23 | ||
|
|
7f554adba5 | ||
|
|
21ce061282 |
+2
-10
@@ -1,17 +1,9 @@
|
||||
buildscript {
|
||||
}
|
||||
|
||||
ext {
|
||||
configuration = [
|
||||
buildDate: new Date()
|
||||
]
|
||||
// This will make me able to build multiple times a day. May break thinks. I may forget it.
|
||||
todaysBuilds = "1"
|
||||
}
|
||||
|
||||
def gitVersion() {
|
||||
def process = "git describe --abbrev=0 --tags".execute()
|
||||
return process.text.substring(1).replaceAll("\\.", "").trim()
|
||||
def process = "git for-each-ref refs/tags --sort=-taggerdate --format='%(refname:short)' --count=1".execute()
|
||||
return process.text.replaceAll("'", "").substring(1).replaceAll("\\.", "").trim()
|
||||
}
|
||||
|
||||
def versionCodeFromGit() {
|
||||
|
500 Internal Server Error
Gitea Version: 1.28.0+dev-210-gd87d26d735 | ||||