website/.github/workflows/deploy.yml
Charlotte Croce 8f73165e82 build?
2025-04-03 12:26:29 -04:00

21 lines
No EOL
450 B
YAML

name: Deploy to GitHub Pages
on:
push:
branches: [ main ] # or master, depending on your default branch
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install and Build
run: |
npm install
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build
branch: gh-pages