Fix main after PR #5: restore deploy pipeline and fix build#6
Merged
Conversation
PR #5 merged an earlier branch tip that predated two fixes, leaving main unbuildable and un-deployable. This restores the correct state: - Restore .github/workflows/deploy.yml and test-deploy.yml (Pages pipeline) - Restore CNAME and LICENSE; add static/CNAME so the domain lands in build - Fix YAML frontmatter in spindrift faq.md and gameplay.md (colon in an unquoted description broke the production build) - Stop tracking .claude/launch.json and CONTENT-INVENTORY.md; gitignore them Production build is green and npm ci is in sync. Landing this triggers a clean Pages deploy of the rebuild. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
PR #5 was merged while its branch tip was an earlier commit (
8aa8978), from before two fixes were pushed to the branch. As a resultmainis currently:deploy.yml,test-deploy.yml),CNAME, andLICENSE(deleted by the replacement tree)description:inspindrift/faq.mdandgameplay.md).claude/launch.json,CONTENT-INVENTORY.md)Because the merge commit deleted
deploy.yml, no deploy ran on the merge, so the live site is unaffected and still serving the previous build.What this does
.github/workflows/deploy.yml+test-deploy.yml,CNAME, andLICENSEstatic/CNAMEso the custom domain is included in the build artifact.claude/launch.jsonandCONTENT-INVENTORY.mdProduction build is green (
npm run build, no broken links/anchors) andnpm ciis in sync with the lockfile.Merging this triggers a clean Pages deploy of the rebuild — this is the point at which the live site updates.
🤖 Generated with Claude Code