Skip to content

Commit

Permalink
releaser: Increase build timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Feb 19, 2021
1 parent 0e9cd81 commit b65518a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion releaser/releaser.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ func (r *ReleaseHandler) release(releaseNotesFile string) error {
return nil
}

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

0 comments on commit b65518a

Please sign in to comment.