Skip to content

upgrade to gatsby 5 #43

upgrade to gatsby 5

upgrade to gatsby 5 #43

Workflow file for this run

name: Deploy Gatsby Site to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: npm install, build, and csv
run: |
npm install --force
npm run build
- name: Deploy site to gh-pages branch
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}