diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index a3dbeb83c..03e5997d9 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 991565e7e..38201ef08 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.