From b74c98f94dce7f0cb20fd5e3646a00ea5af4fb72 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Mon, 17 Oct 2022 15:51:37 -0300 Subject: [PATCH] fix: change publishers order a bit 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{},