There was an error while loading. Please reload this page.
1 parent a0edc4a commit 26caaebCopy full SHA for 26caaeb
1 file changed
.github/workflows/deploy.yml
@@ -10,10 +10,13 @@ permissions:
10
pages: write
11
id-token: write
12
13
-# Allow one concurrent deployment, cancel in-progress runs on new pushes.
+# Serialize deploys: let an in-progress one FINISH, queue the next. Do NOT cancel —
14
+# cancelling a Pages deploy mid-flight wedges the `github-pages` environment queue, and the
15
+# next run then polls `deployment_queued` until it TIMES OUT (~10m). This bit us when a commit
16
+# + its submodule-pointer bump landed minutes apart. GitHub's own Pages starter uses `false`.
17
concurrency:
18
group: pages
- cancel-in-progress: true
19
+ cancel-in-progress: false
20
21
jobs:
22
build:
0 commit comments