From 8f73165e826540e7c0cf974f71c8535148c77718 Mon Sep 17 00:00:00 2001 From: Charlotte Croce Date: Thu, 3 Apr 2025 12:26:29 -0400 Subject: [PATCH] build? --- .github/workflows/deploy.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..aeea565 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -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 \ No newline at end of file