Deploy website to GitHub Pages

This commit is contained in:
2026-08-26 20:06:52 -04:00
parent 0c17689368
commit 96d152f592
6 changed files with 87 additions and 12 deletions
+65
View File
@@ -0,0 +1,65 @@
name: Deploy to GitHub Pages
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check source
run: bun run check
- name: Prepare static-only routes
run: |
rm -f src/proxy.ts
rm -rf src/app/api src/app/login
rm -rf "src/app/(marketing)/beta"
rm -rf "src/app/(marketing)/executive-summary"
rm -rf "src/app/(marketing)/landscape"
- name: Build static site
run: bun run build
env:
GITHUB_PAGES: "true"
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4