Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

move to 8000

move to 8000 #26

Workflow file for this run

name: "Docusaurus 🦖 GitHub Pages"
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: "19"
cache: "yarn"
- name: Build Docusaurus website
working-directory: ./docs
run: |
yarn
yarn build
- name: Deploy to GitHub Pages
if: success()
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build