mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-24 04:16:27 +02:00
50235f2974
* chore(deps): bump Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * chore(deps): bump semver Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * chore(deps): bump cors Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
42 lines
966 B
Go
42 lines
966 B
Go
package semver
|
|
|
|
import (
|
|
"github.com/Masterminds/semver/v3"
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/goreleaser/internal/pipe"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// 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 {
|
|
if ctx.Snapshot {
|
|
return pipe.ErrSnapshotEnabled
|
|
}
|
|
if ctx.SkipValidate {
|
|
log.WithError(err).
|
|
WithField("tag", ctx.Git.CurrentTag).
|
|
Warn("current tag is not a semantic tag")
|
|
return pipe.ErrSkipValidateEnabled
|
|
}
|
|
return errors.Wrapf(err, "failed to parse tag %s as semver", ctx.Git.CurrentTag)
|
|
}
|
|
ctx.Semver = context.Semver{
|
|
Major: sv.Major(),
|
|
Minor: sv.Minor(),
|
|
Patch: sv.Patch(),
|
|
Prerelease: sv.Prerelease(),
|
|
}
|
|
return nil
|
|
}
|