Skip to content

ci: test

ci: test #6

Workflow file for this run

name: docs
on:
workflow_dispatch:
push:
branches:
- master
- 'docs-source/**'
paths-ignore:
- '.github/**'
- '!.github/workflows/**'
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Build VuePress site
run: |
cd docs-source
yarn -i
yarn docs:build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}