mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-06 03:13:48 +02:00
ec2db4a727
<!-- Hi, thanks for contributing! Please make sure you read our CONTRIBUTING guide. Also, add tests and the respective documentation changes as well. --> <!-- If applied, this commit will... --> ... <!-- Why is this change being made? --> ... <!-- # Provide links to any relevant tickets, URLs or other resources --> ... --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
71 lines
1.5 KiB
Go
71 lines
1.5 KiB
Go
// Package project sets "high level" defaults related to the project.
|
|
package project
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"github.com/goreleaser/goreleaser/v2/internal/git"
|
|
"github.com/goreleaser/goreleaser/v2/pkg/context"
|
|
)
|
|
|
|
// Pipe implemens defaulter to set the project name.
|
|
type Pipe struct{}
|
|
|
|
func (Pipe) String() string {
|
|
return "project name"
|
|
}
|
|
|
|
// Default set project defaults.
|
|
func (Pipe) Default(ctx *context.Context) error {
|
|
if ctx.Config.ProjectName != "" {
|
|
return nil
|
|
}
|
|
|
|
for _, candidate := range []string{
|
|
ctx.Config.Release.GitHub.Name,
|
|
ctx.Config.Release.GitLab.Name,
|
|
ctx.Config.Release.Gitea.Name,
|
|
moduleName(),
|
|
gitRemote(ctx),
|
|
} {
|
|
if candidate == "" {
|
|
continue
|
|
}
|
|
ctx.Config.ProjectName = candidate
|
|
return nil
|
|
}
|
|
|
|
return fmt.Errorf("couldn't guess project_name, please add it to your config")
|
|
}
|
|
|
|
func moduleName() string {
|
|
bts, err := exec.Command("go", "list", "-m").CombinedOutput()
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
mod := strings.TrimSpace(string(bts))
|
|
|
|
// this is the default module used when go runs without a go module.
|
|
// https://pkg.go.dev/cmd/go@master#hdr-Package_lists_and_patterns
|
|
if mod == "command-line-arguments" {
|
|
return ""
|
|
}
|
|
|
|
parts := strings.Split(mod, "/")
|
|
return strings.TrimSpace(parts[len(parts)-1])
|
|
}
|
|
|
|
func gitRemote(ctx *context.Context) string {
|
|
repo, err := git.ExtractRepoFromConfig(ctx)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
if err := repo.CheckSCM(); err != nil {
|
|
return ""
|
|
}
|
|
return repo.Name
|
|
}
|