Compare commits

..

5 commits

Author SHA1 Message Date
12b01a2757 feat(Taskfile): add release management tasks
- update version file with the new release version
- add new version tag
- push to remote and run goreleaser
2024-11-08 15:13:46 +01:00
b910d9251b fix: restore filter that excludes version bump entries 2024-11-08 14:23:54 +01:00
a809f4c53e feat: update -version output 2024-11-08 14:22:54 +01:00
6b90c5e4a2 feat(metadata): move version string to version.txt
- create version.txt to store the version number
- add function to read version from version.txt
- replace hardcoded version with dynamic retrieval
2024-11-08 14:21:22 +01:00
6e19e43aa7 Revert "feat: set version from git tag on build"
This reverts commit 61fc21224c.
2024-11-08 14:18:08 +01:00
3 changed files with 32 additions and 4 deletions

View file

@ -15,8 +15,6 @@ builds:
- arm64 - arm64
env: env:
- CGO_ENABLED=0 - CGO_ENABLED=0
ldflags:
- -s -w -X git.smsvc.net/pomodoro/GoTomato/internal/metadata.GoTomatoVersion={{.Version}}
upx: upx:
- enabled: true - enabled: true
@ -25,6 +23,9 @@ upx:
changelog: changelog:
use: gitea use: gitea
filters:
exclude:
- "chore: bump version to"
archives: archives:
- format: binary - format: binary

27
Taskfile.yml Normal file
View file

@ -0,0 +1,27 @@
version: '3'
vars:
RELEASE:
sh: svu next --strip-prefix
VERSIONFILE: version.txt
COMMITMSG: "chore: bump version to v{{.RELEASE}}"
tasks:
release:tag:
cmds:
- git tag v{{.RELEASE}}
release:file:
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

View file

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