From 5de7f612c6c351c6b0310ba0b3bf2d20d0682cc2 Mon Sep 17 00:00:00 2001 From: Xun Jiang/Bruce Jiang <59276555+blackpiglet@users.noreply.github.com> Date: Thu, 7 May 2026 16:27:59 +0800 Subject: [PATCH] Enlarge the goreleaser timeout to 60m. (#9777) Signed-off-by: Xun Jiang --- hack/release-tools/goreleaser.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hack/release-tools/goreleaser.sh b/hack/release-tools/goreleaser.sh index b8a180754..ac2ecf576 100755 --- a/hack/release-tools/goreleaser.sh +++ b/hack/release-tools/goreleaser.sh @@ -52,6 +52,7 @@ if [[ "${PUBLISH:-}" != "TRUE" ]]; then goreleaser release \ --clean \ --parallelism 2 \ + --timeout 60m \ --release-notes="${RELEASE_NOTES_FILE}" \ --snapshot # Generate an unversioned snapshot release, skipping all validations and without publishing any artifacts (implies --skip-publish, --skip-announce and --skip-validate) else @@ -59,5 +60,6 @@ else goreleaser release \ --clean \ --parallelism 2 \ + --timeout 60m \ --release-notes="${RELEASE_NOTES_FILE}" fi