Skip to content

Fix sidebar issue

Fix sidebar issue #186

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
CI: false
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install and Build
run: |
npm install
cd client && npm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: client/dist # The folder the action should deploy.