Fix: Deploy frontend/ to GitHub Pages via Actions workflow#1
Merged
Conversation
Agent-Logs-Url: https://github.com/devXyi/atmos/sessions/89f18d4b-dabb-4b82-aa69-8986ebaa117b Co-authored-by: devXyi <265634822+devXyi@users.noreply.github.com>
devXyi
approved these changes
May 9, 2026
There was a problem hiding this comment.
Pull request overview
Adds a GitHub Actions workflow to deploy the static site located in frontend/ to GitHub Pages, ensuring Pages serves frontend/index.html at the site root rather than the repository README.
Changes:
- Introduces a Pages deployment workflow triggered on pushes to
mainand via manual dispatch. - Configures GitHub Pages, uploads
./frontendas the Pages artifact, and deploys it using the standarddeploy-pagesaction.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
devXyi
approved these changes
May 9, 2026
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.
Problem
GitHub Pages was serving from the repo root (which has
README.mdbut noindex.html), causing the site to display the README instead of the app.Even after switching Settings → Pages → Source to "GitHub Actions", the site still showed README.md because this workflow didn't exist on
mainyet — so nothing was being deployed.Fix
Adds
.github/workflows/pages.ymlwhich:main(and supports manual dispatch)frontend/directory as the Pages artifactindex.htmlis served at the site rootSteps to activate
frontend/index.htmlas the site homepage