1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

Merge pull request #137 from goreleaser/skip-release

skip the git log/diff as well
This commit is contained in:
Carlos Alexandro Becker 2017-03-06 18:14:21 -03:00 committed by GitHub
commit 7e8dcdae77

View File

@ -66,12 +66,12 @@ func main() {
func pipes(buildOnly bool) []pipeline.Pipe {
var pipes = []pipeline.Pipe{
defaults.Pipe{}, // load default configs
git.Pipe{}, // get current tag info
repos.Pipe{}, // split repos into owner/name pairs
}
if !buildOnly {
pipes = append(
pipes,
git.Pipe{}, // get current tag info
env.Pipe{}, // load and validate environment variables
source.Pipe{}, // validate current git state
)