1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-01 00:54:57 +02:00
Files
goreleaser/internal/pipe/partial/partial.go

26 lines
604 B
Go
Raw Normal View History

package partial
import (
"os"
"runtime"
"github.com/charmbracelet/x/exp/ordered"
"github.com/goreleaser/goreleaser/v2/pkg/context"
)
type Pipe struct{}
func (Pipe) String() string { return "partial" }
func (Pipe) Skip(ctx *context.Context) bool { return !ctx.Partial }
func (Pipe) Run(ctx *context.Context) error {
ctx.PartialTarget = getFilter()
return nil
}
func getFilter() string {
goos := ordered.First(os.Getenv("GGOOS"), os.Getenv("GOOS"), runtime.GOOS)
goarch := ordered.First(os.Getenv("GGOARCH"), os.Getenv("GOARCH"), runtime.GOARCH)
return goos + "_" + goarch
}