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

fix: brew and scoop should be last to publish

refs #854
This commit is contained in:
Carlos Alexandro Becker 2018-10-27 13:36:26 -03:00
parent 0251ba5ebb
commit 57d02172bf
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -38,13 +38,13 @@ var publishers = []Publisher{
s3.Pipe{},
put.Pipe{},
artifactory.Pipe{},
brew.Pipe{},
scoop.Pipe{},
docker.Pipe{},
snapcraft.Pipe{},
// This should be the last step in the pipeline to ensure that the
// release notes are complete.
// This should be one of the last steps
release.Pipe{},
// brew and scoop use the release URL, so, they should be last
brew.Pipe{},
scoop.Pipe{},
}
var bold = color.New(color.Bold)