feat: default to release-version file
Some checks failed
Action Validation / validate-released-binary (amd64, ./vociferate, X64) (push) Failing after 6s
Action Validation / validate-released-binary (arm64, qemu-aarch64-static ./vociferate, ARM64) (push) Failing after 23s
Push Validation / validate (push) Successful in 52s

This commit is contained in:
Micheal Wilkinson
2026-03-20 19:32:49 +00:00
parent a413385c4e
commit 2646d42523
7 changed files with 21 additions and 21 deletions

View File

@@ -10,8 +10,8 @@ import (
)
const (
defaultVersionFile = "internal/vociferate/version/version.go"
defaultVersionExpr = `const String = "([^"]+)"`
defaultVersionFile = "release-version"
defaultVersionExpr = `^\s*([^\r\n]+)\s*$`
defaultChangelog = "changelog.md"
)