mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
757701f65c
* fix: Change the init-template for snapshot.name_template * fix: Change the default-template for snapshot.name_template BREAKIND CHANGE: The default value of `snapshot.name_template` is changed.
43 lines
1.0 KiB
Go
43 lines
1.0 KiB
Go
// Package snapshot provides the snapshotting functionality to goreleaser.
|
|
package snapshot
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/goreleaser/internal/pipe"
|
|
"github.com/goreleaser/goreleaser/internal/tmpl"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
)
|
|
|
|
// Pipe for checksums.
|
|
type Pipe struct{}
|
|
|
|
func (Pipe) String() string {
|
|
return "snapshotting"
|
|
}
|
|
|
|
// Default sets the pipe defaults.
|
|
func (Pipe) Default(ctx *context.Context) error {
|
|
if ctx.Config.Snapshot.NameTemplate == "" {
|
|
ctx.Config.Snapshot.NameTemplate = "{{ .Version }}-SNAPSHOT-{{ .ShortCommit }}"
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (Pipe) Run(ctx *context.Context) error {
|
|
if !ctx.Snapshot {
|
|
return pipe.ErrSkipDisabledPipe
|
|
}
|
|
name, err := tmpl.New(ctx).Apply(ctx.Config.Snapshot.NameTemplate)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to generate snapshot name: %w", err)
|
|
}
|
|
if name == "" {
|
|
return fmt.Errorf("empty snapshot name")
|
|
}
|
|
ctx.Version = name
|
|
log.WithField("version", ctx.Version).Infof("building snapshot...")
|
|
return nil
|
|
}
|