Merge branch 'feat/2024updates' #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Get Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
cache: "npm" | |
- name: Build | |
# we need to use force bc of deps misalignment | |
run: | | |
npm i --force | |
npm run build | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: build | |
single-commit: true |