From 27cbbd8e66fd11a45933fcc3501fad1bc3cb0b19 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Mon, 17 Oct 2022 21:19:11 -0300 Subject: [PATCH] fix: change publishers order a bit (#3473) closes https://github.com/goreleaser/goreleaser/discussions/3472 --- internal/pipe/publish/publish.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pipe/publish/publish.go b/internal/pipe/publish/publish.go index 5fe5f887418..cb4c288cb10 100644 --- a/internal/pipe/publish/publish.go +++ b/internal/pipe/publish/publish.go @@ -35,8 +35,8 @@ type Publisher interface { var publishers = []Publisher{ blob.Pipe{}, upload.Pipe{}, - custompublishers.Pipe{}, artifactory.Pipe{}, + custompublishers.Pipe{}, docker.Pipe{}, docker.ManifestPipe{}, sign.DockerPipe{},