mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
6409998dc8
Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
744 B
744 B
Using the main.version
ldflag
Defaults-wise GoReleaser sets three ldflags:
main.version
: Current Git tag (thev
prefix is stripped) or the name of the snapshot, if you're using the--snapshot
flagmain.commit
: Current git commit SHAmain.date
: Date according RFC3339
You can use them in your main.go
file to print more build details:
package main
import "fmt"
var (
version = "dev"
commit = "none"
date = "unknown"
builtBy = "unknown"
)
func main() {
fmt.Printf("my app %s, commit %s, built at %s by %s", version, commit, date, builtBy)
}
You can override this by changing the ldflags
option in the build
section.