Configure GitHub Pages to publish the website app instead of the repo root#5
Merged
Merged
Conversation
Co-authored-by: slideep <100609+slideep@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update deployment configuration for GitHub Pages
Configure GitHub Pages to publish the Mar 14, 2026
website app instead of the repo root
slideep
approved these changes
Mar 14, 2026
slideep
marked this pull request as ready for review
March 14, 2026 12:01
There was a problem hiding this comment.
Pull request overview
Aligns GitHub Pages publishing with the existing GitHub Actions build so Pages serves the built site from website/dist instead of the repository root content (e.g., README.md).
Changes:
- Adds an explicit GitHub Pages configuration step to the Pages workflow.
- Documents the required GitHub Pages setting (Source: GitHub Actions) and why branch publishing doesn’t work for
/website.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| README.md | Documents how Pages is deployed and the required Settings → Pages configuration. |
| .github/workflows/pages.yml | Adds actions/configure-pages to make Actions-based Pages publishing explicit. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| persist-credentials: false | ||
|
|
||
| - name: Configure GitHub Pages | ||
| uses: actions/configure-pages@v5 |
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.
GitHub Pages was effectively behaving like a branch-based publish from the repository root, which allowed the root
README.mdto be served instead of the built site fromwebsite/. This change aligns the repo with the GitHub Actions Pages flow already used to build the app.Pages workflow
.github/workflows/pages.ymlso the deployment is explicitly set up for GitHub Actions publishing.website/dist.Repository guidance
README.mdthat the Pages source should be set to GitHub Actions./docs, not/website.Result
Screenshot
Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
digablesolutions.github.io/home/REDACTED/work/_temp/ghcca-node/node/bin/node /home/REDACTED/work/_temp/ghcca-node/node/bin/node --enable-source-maps /home/REDACTED/work/_temp/copilot-developer-action-main/dist/index.js(dns block)/usr/bin/curl curl -I -L --max-time 20 REDACTED(dns block)https://api.github.com/repos/actions/configure-pages/git/ref/tags/v5/home/REDACTED/work/_temp/ghcca-node/node/bin/node /home/REDACTED/work/_temp/ghcca-node/node/bin/node --enable-source-maps /home/REDACTED/work/_temp/copilot-developer-action-main/dist/index.js(http block)https://api.github.com/repos/actions/deploy-pages/git/ref/tags/v4/home/REDACTED/work/_temp/ghcca-node/node/bin/node /home/REDACTED/work/_temp/ghcca-node/node/bin/node --enable-source-maps /home/REDACTED/work/_temp/copilot-developer-action-main/dist/index.js(http block)https://api.github.com/repos/actions/upload-pages-artifact/git/ref/tags/v4/home/REDACTED/work/_temp/ghcca-node/node/bin/node /home/REDACTED/work/_temp/ghcca-node/node/bin/node --enable-source-maps /home/REDACTED/work/_temp/copilot-developer-action-main/dist/index.js(http block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.