mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-09 13:36:56 +02:00
checksum pipe can run on the no-release mode
This commit is contained in:
parent
7eec7d20d0
commit
20154add09
12
main.go
12
main.go
@ -79,16 +79,16 @@ func pipes(buildOnly bool) []pipeline.Pipe {
|
||||
}
|
||||
pipes = append(
|
||||
pipes,
|
||||
build.Pipe{}, // build
|
||||
archive.Pipe{}, // archive (tar.gz, zip, etc)
|
||||
fpm.Pipe{}, // archive via fpm (deb, rpm, etc)
|
||||
build.Pipe{}, // build
|
||||
archive.Pipe{}, // archive (tar.gz, zip, etc)
|
||||
fpm.Pipe{}, // archive via fpm (deb, rpm, etc)
|
||||
checksums.Pipe{}, // checksums of the files
|
||||
)
|
||||
if !buildOnly {
|
||||
pipes = append(
|
||||
pipes,
|
||||
checksums.Pipe{}, // checksums of the files
|
||||
release.Pipe{}, // release to github
|
||||
brew.Pipe{}, // push to brew tap
|
||||
release.Pipe{}, // release to github
|
||||
brew.Pipe{}, // push to brew tap
|
||||
)
|
||||
}
|
||||
return pipes
|
||||
|
Loading…
x
Reference in New Issue
Block a user