Skip to content

Commit

Permalink
releaser: Reduce parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Apr 14, 2022
1 parent 842262f commit d80d5a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion releaser/releaser.go
Expand Up @@ -207,7 +207,7 @@ func (r *ReleaseHandler) release(releaseNotesFile string) error {
return nil
}

args := []string{"--parallelism", "3", "--timeout", "120m", "--rm-dist", "--release-notes", releaseNotesFile}
args := []string{"--parallelism", "2", "--timeout", "120m", "--rm-dist", "--release-notes", releaseNotesFile}
if r.skipPublish {
args = append(args, "--skip-publish")
}
Expand Down

0 comments on commit d80d5a1

Please sign in to comment.