This commit is contained in:
Charlotte Croce 2025-04-03 12:26:29 -04:00
parent e131ae2efd
commit 8f73165e82

21
.github/workflows/deploy.yml vendored Normal file
View file

@ -0,0 +1,21 @@
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