Live demo (after first deploy): https://.github.io//
What this does
- The repository is a static site (index.html, app.js, styles.css).
- A GitHub Actions workflow
.github/workflows/gh-pages.ymlwill publish the repository root to thegh-pagesbranch whenever you push tomain.
How to publish
- Commit and push your changes to the
mainbranch. - The workflow will run and create/update the
gh-pagesbranch. - GitHub Pages will serve the site (URL above). If needed, visit the repository Settings → Pages to confirm the site URL.
Notes & options
- If you prefer to serve from a
docs/folder instead, move the site files intodocs/and changepublish_dirin the workflow todocs/. - Add a screenshot (e.g.,
seals/demo-screenshot.png) to preview the site directly in this README.
Need me to:
- create a
docs/folder and move files, or - add an automated screenshot creation step, or
- tailor the workflow to a different branch?