From 1d268e6f977786766c03276c4f33a3413425ddb5 Mon Sep 17 00:00:00 2001 From: snowy Date: Thu, 28 Mar 2024 09:49:41 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20vuepress=E6=9E=84=E5=BB=BA=E6=96=87?= =?UTF-8?q?=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-docs.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 16ddcf2..1ed71c6 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -20,6 +20,9 @@ jobs: fetch-depth: 0 # 如果你文档需要 Git 子模块,取消注释下一行 # submodules: true + - name: 切换工作目录 + run: echo "Switching to docs directory" + working-directory: ./docs - name: 安装 pnpm uses: pnpm/action-setup@v2 @@ -40,11 +43,11 @@ jobs: NODE_OPTIONS: --max_old_space_size=8192 run: |- pnpm run docs:build - > docs/.vuepress/dist/.nojekyll + > .vuepress/dist/.nojekyll - name: 部署文档 uses: JamesIves/github-pages-deploy-action@v4 with: # 这是文档部署到的分支名称 branch: gh-pages - folder: docs/.vuepress/dist + folder: .vuepress/dist