Compare commits
5 commits
9d92b6858a
...
da4a2ce7b0
Author | SHA1 | Date | |
---|---|---|---|
da4a2ce7b0 | |||
1ec32bc0d9 | |||
34026b1bc9 | |||
081e1ade47 | |||
e9d8d2e2dd |
5 changed files with 50 additions and 3 deletions
|
@ -23,6 +23,9 @@ upx:
|
|||
|
||||
changelog:
|
||||
use: gitea
|
||||
filters:
|
||||
exclude:
|
||||
- "chore: bump version to"
|
||||
|
||||
archives:
|
||||
- format: binary
|
||||
|
|
33
Taskfile.yml
Normal file
33
Taskfile.yml
Normal file
|
@ -0,0 +1,33 @@
|
|||
version: '3'
|
||||
|
||||
vars:
|
||||
RELEASE:
|
||||
sh: svu next --strip-prefix
|
||||
VERSIONFILE: version.txt
|
||||
COMMITMSG: "chore: bump version to v{{.RELEASE}}"
|
||||
CURRENTBRANCH:
|
||||
sh: git branch --show-current
|
||||
|
||||
tasks:
|
||||
release:tag:
|
||||
preconditions:
|
||||
- test {{.CURRENTBRANCH}} == "main"
|
||||
cmds:
|
||||
- git tag v{{.RELEASE}}
|
||||
|
||||
release:file:
|
||||
preconditions:
|
||||
- test {{.CURRENTBRANCH}} == "main"
|
||||
cmds:
|
||||
- echo {{.RELEASE}} >{{.VERSIONFILE}}
|
||||
- git add {{.VERSIONFILE}}
|
||||
- git commit -m "{{.COMMITMSG}}"
|
||||
|
||||
release:push:
|
||||
aliases: [dorelease]
|
||||
cmds:
|
||||
- task: release:file
|
||||
- task: release:tag
|
||||
- git push
|
||||
- git push --tags
|
||||
- goreleaser release
|
|
@ -28,7 +28,7 @@ func Start() {
|
|||
|
||||
// show server and protocl version and exit
|
||||
if *showVersionFlag {
|
||||
fmt.Printf("Server-Version: v%s\n", metadata.GoTomatoVersion)
|
||||
fmt.Printf("GoTomato v%s\n", metadata.GoTomatoVersion)
|
||||
fmt.Printf("Protocol-Version: v%s\n", metadata.ProtocolVersion)
|
||||
os.Exit(0)
|
||||
}
|
||||
|
|
|
@ -1,6 +1,16 @@
|
|||
package metadata
|
||||
|
||||
import "strings"
|
||||
import (
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
const GoTomatoVersion = "0.1.1" // The GoTomato version
|
||||
func getVersion() string {
|
||||
content, _ := os.ReadFile("version.txt")
|
||||
version := strings.TrimSpace(string(content))
|
||||
|
||||
return version
|
||||
}
|
||||
|
||||
var GoTomatoVersion = getVersion() // The GoTomato version
|
||||
var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0] // The protocol version
|
||||
|
|
1
version.txt
Normal file
1
version.txt
Normal file
|
@ -0,0 +1 @@
|
|||
devel
|
Loading…
Reference in a new issue