Skip to content

Commit 7c12574

Browse files
mpstatonclaude
andcommitted
fix(splash, pages.yml): deploy from rebuild/turbo-rsbuild, the repo's default branch
GitHub Pages never built because the workflow only triggered on push to `main` — but augment-it's default branch, and the only branch that has splash/, is `rebuild/turbo-rsbuild`. Add it to the push triggers so pushes to it build + deploy (main kept for after the rebuild lands there). Pushing this commit is itself the first triggering push. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent df12b6b commit 7c12574

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/pages.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: Deploy splash to GitHub Pages
22

33
on:
44
push:
5-
branches: [main]
5+
# The augment-it rebuild currently lives on `rebuild/turbo-rsbuild` — that's
6+
# where splash/ exists, so that's what we deploy from. `main` is kept for
7+
# after the rebuild lands there. (master/development are intentionally NOT
8+
# watched yet: they have no splash/, so a push would just fail the build.)
9+
branches: [rebuild/turbo-rsbuild, main]
610
workflow_dispatch:
711

812
permissions:

0 commit comments

Comments
 (0)