Revert "feat: set version from git tag on build"

This reverts commit 61fc21224c.
This commit is contained in:
Sebastian Mark 2024-11-08 14:18:08 +01:00
parent 6a3919e95e
commit 6e19e43aa7
3 changed files with 3 additions and 6 deletions

View file

@ -15,8 +15,6 @@ builds:
- arm64
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X git.smsvc.net/pomodoro/GoTomato/internal/metadata.GoTomatoVersion={{.Version}}
upx:
- enabled: true

View file

@ -28,8 +28,8 @@ func Start() {
// show server and protocl version and exit
if *showVersionFlag {
fmt.Println("Server-Version:", metadata.GoTomatoVersion)
fmt.Println("Protocol-Version:", metadata.ProtocolVersion)
fmt.Printf("Server-Version: v%s\n", metadata.GoTomatoVersion)
fmt.Printf("Protocol-Version: v%s\n", metadata.ProtocolVersion)
os.Exit(0)
}

View file

@ -2,6 +2,5 @@ package metadata
import "strings"
// This will be overwritten by goreleaser on build
var GoTomatoVersion = "devel" // The GoTomato version
const GoTomatoVersion = "0.1.1" // The GoTomato version
var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0] // The protocol version