Skip to content

test(ci): update GitHub Pages workflow for Docusaurus #3

test(ci): update GitHub Pages workflow for Docusaurus

test(ci): update GitHub Pages workflow for Docusaurus #3

Workflow file for this run

name: Deploy Docusaurus to GitHub Pages
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Install Dependencies
run: yarn install
- name: Build Website
run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build