Skip to content

updated docs

updated docs #339

Workflow file for this run

name: Deploy Docusaurus Site
on:
workflow_dispatch:
push:
branches:
- master
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 21
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./build
github_token: ${{ secrets.GITHUB_TOKEN }}