Skip to content

Update README.md

Update README.md #33

Workflow file for this run

name: Github Pages Deploy
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x ]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install and build npm packages
run: npm install && npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build # The folder the action should deploy.