From f4f1bc59208a8ac7a853077d51e29559370185a0 Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Tue, 3 Dec 2024 13:13:06 +0800 Subject: [PATCH] chore(ci): build Signed-off-by: Neko Ayaka --- .github/workflows/ci-build.yaml | 16 ++-------------- .../workflows/production-docs-deployment.yaml | 5 ++--- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index a3dbeb8..03e5997 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -65,20 +65,8 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile - - name: Build packages - run: pnpm packages:build - env: - # As suggested in Verbose Build option to be able to track down errors https://github.com/vuejs/vitepress/issues/422 - # vitepress build command does not have --debug option, so we need to set it manually where the debug package is used. - DEBUG: none - - - name: Build docs - run: pnpm docs:build - env: - # As suggested in Verbose Build option to be able to track down errors https://github.com/vuejs/vitepress/issues/422 - # vitepress build command does not have --debug option, so we need to set it manually where the debug package is used. - # DEBUG: 'vitepress:*' - VUE_PROD_HYDRATION_MISMATCH_DETAILS_FLAG: '1' + - name: Build Site + run: pnpm build - name: Upload artifact uses: actions/upload-artifact@v4 diff --git a/.github/workflows/production-docs-deployment.yaml b/.github/workflows/production-docs-deployment.yaml index 991565e..38201ef 100644 --- a/.github/workflows/production-docs-deployment.yaml +++ b/.github/workflows/production-docs-deployment.yaml @@ -47,10 +47,9 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile - - name: Build docs + - name: Build Site run: | - pnpm packages:build - pnpm docs:build + pnpm build env: # As suggested in Verbose Build option to be able to track down errors https://github.com/vuejs/vitepress/issues/422 # vitepress build command does not have --debug option, so we need to set it manually where the debug package is used.