website/.github/workflows/deploy.yml
Charlotte Croce 1926ac8567 build2
2025-04-03 12:28:23 -04:00

21 lines
No EOL
403 B
YAML

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
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