diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index e25b50a..ad9a15e 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -32,17 +32,17 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 # 如果未启用 lastUpdated,则不需要 - - uses: pnpm/action-setup@v4 - with: - version: 9 + # - uses: pnpm/action-setup@v4 + # with: + # version: 9 - name: Setup Node uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm # 或 pnpm / yarn + cache: npm # 或 pnpm / yarn - name: Install dependencies - run: pnpm install + run: npm install working-directory: docs - name: Setup Pages uses: actions/configure-pages@v4