From 57d02172bf1cd23c10a29023285804c88fb3e3ce Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Sat, 27 Oct 2018 13:36:26 -0300 Subject: [PATCH] fix: brew and scoop should be last to publish refs #854 --- internal/pipe/publish/publish.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/pipe/publish/publish.go b/internal/pipe/publish/publish.go index 28d4a2ff0..ad968b83a 100644 --- a/internal/pipe/publish/publish.go +++ b/internal/pipe/publish/publish.go @@ -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)