mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
Go
// Package context provides gorelease context which is passed through the
|
|
// pipeline.
|
|
//
|
|
// The context extends the standard library context and add a few more
|
|
// fields and other things, so pipes can gather data provided by previous
|
|
// pipes without really knowing each other.
|
|
package context
|
|
|
|
import (
|
|
ctx "context"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
"github.com/goreleaser/goreleaser/internal/artifact"
|
|
)
|
|
|
|
// GitInfo includes tags and diffs used in some point
|
|
type GitInfo struct {
|
|
CurrentTag string
|
|
Commit string
|
|
}
|
|
|
|
// Context carries along some data through the pipes
|
|
type Context struct {
|
|
ctx.Context
|
|
Config config.Project
|
|
Env map[string]string
|
|
Token string
|
|
Git GitInfo
|
|
Artifacts artifact.Artifacts
|
|
Checksums []string
|
|
Dockers []string
|
|
ReleaseNotes string
|
|
Version string
|
|
Validate bool
|
|
Publish bool
|
|
Snapshot bool
|
|
RmDist bool
|
|
Debug bool
|
|
Parallelism int
|
|
}
|
|
|
|
// New context
|
|
func New(config config.Project) *Context {
|
|
return &Context{
|
|
Context: ctx.Background(),
|
|
Config: config,
|
|
Env: splitEnv(os.Environ()),
|
|
Parallelism: 4,
|
|
Artifacts: artifact.New(),
|
|
}
|
|
}
|
|
|
|
func splitEnv(env []string) map[string]string {
|
|
r := map[string]string{}
|
|
for _, e := range env {
|
|
p := strings.SplitN(e, "=", 2)
|
|
r[p[0]] = p[1]
|
|
}
|
|
return r
|
|
}
|