https://github.com/beuted/game-website
Website for the game I'm working on
https://github.com/beuted/game-website
Last synced: about 1 month ago
JSON representation
Website for the game I'm working on
- Host: GitHub
- URL: https://github.com/beuted/game-website
- Owner: beuted
- Created: 2026-03-07T17:32:07.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-07T19:24:11.000Z (4 months ago)
- Last Synced: 2026-03-08T00:53:57.531Z (4 months ago)
- Language: CSS
- Size: 16.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# game-website
## Deploying to GitHub Pages (auto on push to `main`)
### One-time setup
1. **Turn on GitHub Pages from Actions**
- Open the repo on GitHub → **Settings** → **Pages**.
- Under **Build and deployment**, set **Source** to **GitHub Actions**.
2. **Match the base path to your repo name**
- In **`.github/workflows/deploy-pages.yml`**, find the `BASE_PATH` env var in the **Build** step.
### After that
- Every **push to `main`** runs the workflow: it builds the site and deploys it to GitHub Pages.
- The site will be at: **`https://beuted.github.io/game-website/`**
## Local dev
- `npm run dev` — run locally (no base path).
- `npm run build` — build for production (uses `BASE_PATH` only when that env var is set, e.g. in CI).