Skip to content

Commit 9cf3467

Browse files
miharpclaude
andcommitted
Raise deploy ship timeout to 5 minutes
The deploy `ship` job is capped at `timeout-minutes: 1`, but pulling and extracting the full-site archive, uploading the Pages artifact, and the GH Pages deployment now total just over a minute as the site has grown (older deploys ran ~30s). A manual deploy of master hit the cap and was cancelled at the "Deploy to GH Pages" step, so the build never went live. Raise the cap to 5 minutes to give headroom. Signed-off-by: Michael Harp <mike@mikeharp.com> Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 9d67f4c commit 9cf3467

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/deploy.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040
4141
ship:
4242
runs-on: ubuntu-24.04
43-
timeout-minutes: 1
43+
# Pulling and extracting the full-site archive, uploading the Pages artifact,
44+
# and the GH Pages deployment together exceed 1 minute as the site grows, so
45+
# give the job headroom above the previous tight 1-minute cap.
46+
timeout-minutes: 5
4447
needs:
4548
- setup
4649
permissions:

0 commit comments

Comments
 (0)