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 = append(
|
||||||
pipes,
|
pipes,
|
||||||
build.Pipe{}, // build
|
build.Pipe{}, // build
|
||||||
archive.Pipe{}, // archive (tar.gz, zip, etc)
|
archive.Pipe{}, // archive (tar.gz, zip, etc)
|
||||||
fpm.Pipe{}, // archive via fpm (deb, rpm, etc)
|
fpm.Pipe{}, // archive via fpm (deb, rpm, etc)
|
||||||
|
checksums.Pipe{}, // checksums of the files
|
||||||
)
|
)
|
||||||
if !buildOnly {
|
if !buildOnly {
|
||||||
pipes = append(
|
pipes = append(
|
||||||
pipes,
|
pipes,
|
||||||
checksums.Pipe{}, // checksums of the files
|
release.Pipe{}, // release to github
|
||||||
release.Pipe{}, // release to github
|
brew.Pipe{}, // push to brew tap
|
||||||
brew.Pipe{}, // push to brew tap
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return pipes
|
return pipes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user