Skip to content

fix 路径错误

fix 路径错误 #3

Workflow file for this run

name: docs
on:
push:
branches: [lr]
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
working-directory: docs
- name: Build VuePress site
run: npm run docs:build
working-directory: docs
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: docs/docs/.vuepress/dist
env:
GITHUB_TOKEN: ${{ secrets.token }}