diff --git a/internal/pipe/scoop/scoop.go b/internal/pipe/scoop/scoop.go index 957ba0ad024..288d4d18364 100644 --- a/internal/pipe/scoop/scoop.go +++ b/internal/pipe/scoop/scoop.go @@ -9,6 +9,7 @@ import ( "path/filepath" "strings" + "github.com/apex/log" "github.com/goreleaser/goreleaser/internal/artifact" "github.com/goreleaser/goreleaser/internal/client" "github.com/goreleaser/goreleaser/internal/pipe" @@ -179,6 +180,13 @@ func buildManifest(ctx *context.Context, artifacts []*artifact.Artifact) (bytes. return result, err } + log.WithFields(log.Fields{ + "artifactExtras": artifact.Extra, + "fromURLTemplate": ctx.Config.Scoop.URLTemplate, + "templatedBrewURL": url, + "sum": sum, + }).Debug("scoop url templating") + manifest.Architecture[arch] = Resource{ URL: url, Bin: binaries(artifact),