mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
833db79bda
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
32 lines
648 B
Go
32 lines
648 B
Go
package semver
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/Masterminds/semver/v3"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
)
|
|
|
|
// Pipe is a global hook pipe.
|
|
type Pipe struct{}
|
|
|
|
// String is the name of this pipe.
|
|
func (Pipe) String() string {
|
|
return "parsing tag"
|
|
}
|
|
|
|
// Run executes the hooks.
|
|
func (Pipe) Run(ctx *context.Context) error {
|
|
sv, err := semver.NewVersion(ctx.Git.CurrentTag)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to parse tag '%s' as semver: %w", ctx.Git.CurrentTag, err)
|
|
}
|
|
ctx.Semver = context.Semver{
|
|
Major: sv.Major(),
|
|
Minor: sv.Minor(),
|
|
Patch: sv.Patch(),
|
|
Prerelease: sv.Prerelease(),
|
|
}
|
|
return nil
|
|
}
|