pages: serve site/ as the single deployer (drop sample Jekyll workflow)#10
Merged
Conversation
The repo now has Pages enabled (source: GitHub Actions). Remove the auto-generated jekyll-gh-pages.yml sample — it builds Jekyll from the repo root (which would serve the README, not our landing page) and races our deployer on the same 'pages' concurrency group. pages.yml uploads the purpose-built site/ directory; drop the enablement flag (the default Actions token can't create the Pages site, and it's already enabled). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012CrMioorha3QtPUgWbtDbR
DCCA
pushed a commit
that referenced
this pull request
Jun 23, 2026
…w) (#10) Removes the auto-generated jekyll-gh-pages.yml sample (which would build Jekyll from the repo root and race the pages concurrency group) so pages.yml is the single deployer of the purpose-built site/ landing page. Drops the enablement flag now that Pages is enabled.
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.
Summary
You enabled GitHub Pages (thanks — that fixes the permission error the Actions token hit). GitHub auto-added a sample Jekyll workflow (
jekyll-gh-pages.yml) when you did. This reconciles the two so the actual landing page gets served:jekyll-gh-pages.yml— it runsjekyll-build-pagesfrom the repo root, which would publish a Jekyll build of the repo (effectively the README), not oursite/index.html. It also shares thepagesconcurrency group with our deployer, so the two would race.pages.ymlis now the single deployer — it uploads the purpose-builtsite/directory (our best-in-class landing page) and deploys it. Dropped theenablementflag (Pages is already enabled, and the default token can't create the site anyway) and corrected the comment.After merge,
pages.ymlshould publish https://dcca.github.io/loopy/ with the real landing page.🤖 Generated with Claude Code
https://claude.ai/code/session_012CrMioorha3QtPUgWbtDbR
Generated by Claude Code