Small fix for set-version.sh.
Release / release (push) Failing after 45s

This commit is contained in:
2025-08-02 13:57:27 +02:00
parent 1991963cab
commit 176901d960
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
VERSION=$(git describe --tags --always --dirty 2>/dev/null || echo "dev") VERSION=${1:-$(git describe --tags --always --dirty 2>/dev/null || echo "dev")}
# Allow git to track changes to version.go # Allow git to track changes to version.go
git update-index --no-assume-unchanged version.go git update-index --no-assume-unchanged version.go
# Hardcode the version into main.go # Hardcode the version into main.go
+1 -1
View File
@@ -1,3 +1,3 @@
package main package main
var Version = "dev" var Version = "v0.3.2"