From 8eae066aba6ce5c681a72514aa463d916d4e7646 Mon Sep 17 00:00:00 2001 From: zyronon Date: Sun, 10 Aug 2025 17:20:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9github=20actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-pages.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 14c0b669..d032c6e7 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -31,22 +31,17 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Install pnpm - uses: pnpm/action-setup@v4 - with: - version: 8 - - name: Set up Node uses: actions/setup-node@v4 with: node-version: 24 - cache: 'pnpm' + cache: 'npm' - name: Install dependencies - run: pnpm install + run: npm install - name: Build - run: pnpm run build + run: npm run build - name: Setup Pages uses: actions/configure-pages@v4