diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index b3b6706..bdcca26 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -16,6 +16,7 @@ concurrency: cancel-in-progress: false jobs: + # 编译构造步骤。 build: runs-on: ubuntu-latest steps: @@ -33,7 +34,7 @@ jobs: - uses: actions/upload-pages-artifact@v3 with: {path: docs/.vitepress/dist} - # 部署到 GitHub Pages 的配置。 + # 部署步骤。 deploy: environment: name: github-pages diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 557ca7e..07ba50c 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -16,7 +16,7 @@ export default defineConfig({ }), ], }, - base: "/handbook/docs/", + base: "/handbook/", lang: "zh-CN", title: "数社软件开发手册", description: "软件开发基础知识文档",