mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-08-13 22:41:54 +02:00
The `-X` target carried the full module path in both the Makefile and .goreleaser.yaml, so any change to the module path silently turned the injection into a no-op and shipped a binary reporting "dev". Target `main.version` instead, which no longer names the module, and fail `make checks` when the injection stops taking effect. Assisted-by: Codet:GPT-5.1-Codex
18 lines
305 B
Go
18 lines
305 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package ver
|
|
|
|
var version = "dev"
|
|
|
|
// SetVersion records the version injected into package main at build time.
|
|
func SetVersion(v string) {
|
|
if v != "" {
|
|
version = v
|
|
}
|
|
}
|
|
|
|
func Version() string {
|
|
return version
|
|
}
|