Skip to content

Commit

Permalink
docs: vuepress构建文档
Browse files Browse the repository at this point in the history
  • Loading branch information
snowykami committed Mar 28, 2024
1 parent 41b2b13 commit f9ee8c0
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,22 @@ jobs:
run_install: true
version: 8

- name: 切换工作目录
- name: 切换工作目录并设置Node.js
run: cd docs

- name: 显示当前目录内容
run: ls -al

- name: 设置 Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
lockfile: pnpm-lock.yaml # 指定正确的路径

- name: 构建文档
env:
NODE_OPTIONS: --max_old_space_size=8192
run: |-
pnpm run docs:build
> .vuepress/dist/.nojekyll
> docs/.vuepress/dist/.nojekyll
- name: 部署文档
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: .vuepress/dist
folder: docs/.vuepress/dist

0 comments on commit f9ee8c0

Please sign in to comment.