From 086e379f2c69cb15fa89a11bf73b2914adcee486 Mon Sep 17 00:00:00 2001 From: MoeFurina Date: Fri, 22 May 2026 20:27:20 +0800 Subject: [PATCH] =?UTF-8?q?fix(workflow):=20=E7=A7=BB=E5=8A=A8=20pnpm=20?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E6=AD=A5=E9=AA=A4=E4=BB=A5=E9=81=BF=E5=85=8D?= =?UTF-8?q?=E9=87=8D=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-on-version-change.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-on-version-change.yml b/.github/workflows/release-on-version-change.yml index e29d51c..9df98f1 100644 --- a/.github/workflows/release-on-version-change.yml +++ b/.github/workflows/release-on-version-change.yml @@ -95,16 +95,18 @@ jobs: - name: Checkout uses: actions/checkout@v6 + - name: Setup pnpm + uses: pnpm/action-setup@v6 + with: + version: 9 + - name: Setup Node.js uses: actions/setup-node@v6 with: node-version: 18 cache: pnpm - - name: Setup pnpm - uses: pnpm/action-setup@v6 - with: - version: 9 + - name: Install dependencies run: pnpm install --frozen-lockfile