1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-04 22:14:28 +02:00

40 lines
1.0 KiB
Go
Raw Normal View History

2017-01-21 19:11:54 -02:00
// Package source provides pipes to take care of validating the current
// git repo state.
// For the releasing process we need the files of the tag we are releasing.
package source
import (
2017-01-19 10:24:04 +01:00
"errors"
"os/exec"
"github.com/goreleaser/goreleaser/context"
)
2017-01-21 19:11:54 -02:00
// ErrDirty happens when the repo has uncommitted/unstashed changes
var ErrDirty = errors.New("git is currently in a dirty state")
var ErrWrongRef = errors.New("current tag ref is different from HEAD ref")
// Pipe to make sure we are in the latest Git tag as source.
type Pipe struct{}
// Description of the pipe
func (p *Pipe) Description() string {
2017-01-21 19:11:54 -02:00
return "Validating current git state"
}
2017-01-21 19:11:54 -02:00
// Run errors we the repo is dirty or if the current ref is different from the
// tag ref
func (p *Pipe) Run(ctx *context.Context) error {
cmd := exec.Command("git", "diff-index", "--quiet", "HEAD", "--")
2017-01-21 19:11:54 -02:00
if err := cmd.Run(); err != nil {
return ErrDirty
}
cmd = exec.Command("git", "describe", "--exact-match", "--match", ctx.Git.CurrentTag)
2017-01-21 19:11:54 -02:00
if err := cmd.Run(); err != nil {
2017-01-19 10:24:04 +01:00
}
return nil
}