1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-02 22:05:46 +02:00
Carlos Alexandro Becker 54708f9005
added doc
2017-01-21 19:33:30 -02:00

41 lines
1.2 KiB
Go

// 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 (
"errors"
"os/exec"
"github.com/goreleaser/goreleaser/context"
)
// ErrDirty happens when the repo has uncommitted/unstashed changes
var ErrDirty = errors.New("git is currently in a dirty state, commit or stash your changes to continue")
// ErrWrongRef happens when the HEAD reference is different from the tag being built
var ErrWrongRef = errors.New("current tag ref is different from HEAD ref, checkout the latest tag to continue")
// 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 {
return "Validating current git state"
}
// 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", "--")
if err := cmd.Run(); err != nil {
return ErrDirty
}
cmd = exec.Command("git", "describe", "--exact-match", "--tags", "--match", ctx.Git.CurrentTag)
if err := cmd.Run(); err != nil {
return ErrWrongRef
}
return nil
}