Skip to content

switch deploy docs to yarn #9

switch deploy docs to yarn

switch deploy docs to yarn #9

Workflow file for this run

name: Deploy on gh-pages
on:
push:
branches:
- dev
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22.1.0' # Replace with the desired Node.js version
- run: yarn install --frozen-lockfile
# Build the docs
- name: Build
run: yarn vocs build --searchIndex false && bun run vocs search-index
working-directory: ./docs
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/dist