1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-25 01:32:21 +02:00
goreleaser/main.go
Carlos Alexandro Becker 86262c1b85
feat: changing descriptions everywhere, more docs touches (#5368)
Using the new "Release engineering, simplified" phrasing everywhere.
2024-12-13 07:54:45 -03:00

73 lines
1.5 KiB
Go

package main
import (
"os"
_ "embed"
goversion "github.com/caarlos0/go-version"
"github.com/caarlos0/log"
"github.com/charmbracelet/lipgloss"
"github.com/goreleaser/goreleaser/v2/cmd"
"github.com/muesli/termenv"
"go.uber.org/automaxprocs/maxprocs"
)
//nolint:gochecknoglobals
var (
version = ""
commit = ""
treeState = ""
date = ""
builtBy = ""
)
func init() {
// enable colored output on github actions et al
if os.Getenv("CI") != "" {
lipgloss.SetColorProfile(termenv.TrueColor)
}
// automatically set GOMAXPROCS to match available CPUs.
// GOMAXPROCS will be used as the default value for the --parallelism flag.
if _, err := maxprocs.Set(); err != nil {
log.WithError(err).Warn("failed to set GOMAXPROCS")
}
}
func main() {
cmd.Execute(
buildVersion(version, commit, date, builtBy, treeState),
os.Exit,
os.Args[1:],
)
}
const website = "https://goreleaser.com"
//go:embed art.txt
var asciiArt string
func buildVersion(version, commit, date, builtBy, treeState string) goversion.Info {
return goversion.GetVersionInfo(
goversion.WithAppDetails("goreleaser", "Release engineering, simplified.", website),
goversion.WithASCIIName(asciiArt),
func(i *goversion.Info) {
if commit != "" {
i.GitCommit = commit
}
if treeState != "" {
i.GitTreeState = treeState
}
if date != "" {
i.BuildDate = date
}
if version != "" {
i.GitVersion = version
}
if builtBy != "" {
i.BuiltBy = builtBy
}
},
)
}