docs: vuepress构建文档

This commit is contained in:
snowy 2024-03-28 10:17:04 +08:00
parent 41b2b13442
commit f9ee8c0aed

View File

@ -23,28 +23,22 @@ jobs:
run_install: true run_install: true
version: 8 version: 8
- name: 切换工作目录 - name: 切换工作目录并设置Node.js
run: cd docs run: cd docs
- name: 显示当前目录内容
run: ls -al
- name: 设置 Node.js
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: 20 node-version: 20
cache: pnpm cache: pnpm
lockfile: pnpm-lock.yaml # 指定正确的路径
- name: 构建文档 - name: 构建文档
env: env:
NODE_OPTIONS: --max_old_space_size=8192 NODE_OPTIONS: --max_old_space_size=8192
run: |- run: |-
pnpm run docs:build pnpm run docs:build
> .vuepress/dist/.nojekyll > docs/.vuepress/dist/.nojekyll
- name: 部署文档 - name: 部署文档
uses: JamesIves/github-pages-deploy-action@v4 uses: JamesIves/github-pages-deploy-action@v4
with: with:
branch: gh-pages branch: gh-pages
folder: .vuepress/dist folder: docs/.vuepress/dist