Skip to content

Commit 82c3307

Browse files
miharpclaude
andcommitted
Raise publish build timeout to 10 minutes
The publish `build` job is capped at `timeout-minutes: 5`, but the build was already running ~4m41s (references:all clones and generates docs for three products, which is network-variable). The component-version refresh tasks added in #339 make additional live GitHub API calls, pushing a representative build to ~5m06s — over the cap — so the job was cancelled at the Archive step and the deploy was skipped, leaving master unpublished. Raise the cap to 10 minutes to restore publishing and give headroom for the network-variable build. Signed-off-by: Michael Harp <mike@mikeharp.com> Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent df2b4fc commit 82c3307

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ jobs:
5757
5858
build:
5959
runs-on: ubuntu-24.04
60-
timeout-minutes: 5
60+
# references:all clones and generates docs for three products and the
61+
# component-version tasks make live GitHub API calls, so the build is network-
62+
# variable and runs ~5 min; give headroom above the previous tight 5-min cap.
63+
timeout-minutes: 10
6164
needs:
6265
- setup
6366
env:

0 commit comments

Comments
 (0)