mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-22 04:08:49 +02:00
fix: manifest with no parallelism (#1978)
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
parent
1b0b6be8c5
commit
c613dd9c95
@ -27,7 +27,7 @@ func (ManifestPipe) Publish(ctx *context.Context) error {
|
|||||||
if ctx.SkipPublish {
|
if ctx.SkipPublish {
|
||||||
return pipe.ErrSkipPublishEnabled
|
return pipe.ErrSkipPublishEnabled
|
||||||
}
|
}
|
||||||
var g = semerrgroup.NewSkipAware(semerrgroup.New(ctx.Parallelism))
|
var g = semerrgroup.NewSkipAware(semerrgroup.New(1))
|
||||||
for _, manifest := range ctx.Config.DockerManifests {
|
for _, manifest := range ctx.Config.DockerManifests {
|
||||||
manifest := manifest
|
manifest := manifest
|
||||||
g.Go(func() error {
|
g.Go(func() error {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user