From ad3c2c5030335803cf5b7d10a130af7cf3a84086 Mon Sep 17 00:00:00 2001 From: Even Stensberg Date: Sat, 29 Aug 2026 15:37:03 +0200 Subject: [PATCH] chore: rename default branch to main --- .github/workflows/ci.yml | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6223620..c49d99f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] permissions: contents: read @@ -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' diff --git a/README.md b/README.md index 6c94b51..a778eae 100644 --- a/README.md +++ b/README.md @@ -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.