Skip to content
This repository was archived by the owner on Sep 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

permissions:
contents: read
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Build
run: npm run build

# `on.push` is restricted to master, so this only ever runs for master.
# `on.push` is restricted to main, so this only ever runs for main.
# Pull request runs stop after the build above and never publish.
- name: Upload Pages artifact
if: github.event_name == 'push'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ npm run build

Creates a production bundle for the app.

Deployment is automatic: every push to `master` builds the site and publishes it
Deployment is automatic: every push to `main` builds the site and publishes it
to GitHub Pages via `.github/workflows/ci.yml`. Pull requests build but never
publish. There is no manual deploy step.

Expand Down