Skip to content

Commit

Permalink
wip(docs): update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
evoxmusic committed Apr 21, 2024
1 parent 1c5c86a commit 8556a92
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- main

defaults:
run:
working-directory: ./website

jobs:
build:
name: Build Docusaurus
Expand All @@ -13,23 +17,22 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
# cache: npm

- name: Install dependencies
working-directory: ./website
run: npm ci

- name: Build website
working-directory: ./website
run: npm run build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./website/build
path: build

deploy:
name: Deploy Doc to GitHub Pages
Expand Down

0 comments on commit 8556a92

Please sign in to comment.