chore: remove GitHub Pages deploy workflow (migrated to Cloudflare) (#21)

This commit is contained in:
Zane Chen
2026-06-02 23:04:19 -04:00
committed by GitHub
parent 11481cc446
commit 1171be7d89
-51
View File
@@ -1,51 +0,0 @@
name: Deploy to GitHub Pages
on:
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@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: web/package-lock.json
- name: Install dependencies
working-directory: web
run: npm ci
- name: Build
working-directory: web
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: web/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