Skip to content

Commit

Permalink
fix: do not run changelog on goreleaser build (#3520)
Browse files Browse the repository at this point in the history
Its not really needed, nor used for anything, and can cause some issues.

fixes #3510

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Nov 2, 2022
1 parent b9649cf commit 6fd8eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/pipeline/pipeline.go
Expand Up @@ -68,8 +68,6 @@ var BuildPipeline = []Piper{
gomod.ProxyPipe{},
// writes the actual config (with defaults et al set) to dist
effectiveconfig.Pipe{},
// builds the release changelog
changelog.Pipe{},
// build
build.Pipe{},
// universal binary handling
Expand All @@ -84,6 +82,8 @@ var BuildCmdPipeline = append(BuildPipeline, metadata.Pipe{})
// nolint: gochecknoglobals
var Pipeline = append(
BuildPipeline,
// builds the release changelog
changelog.Pipe{},
// archive in tar.gz, zip or binary (which does no archiving at all)
archive.Pipe{},
// archive the source code using git-archive
Expand Down

0 comments on commit 6fd8eec

Please sign in to comment.