From 21ec0007a86a4ddb67a12c2b0fdecd256d6c085c Mon Sep 17 00:00:00 2001 From: coso Date: Mon, 12 Jan 2026 08:30:16 +0800 Subject: [PATCH] fix: use --no-frozen-lockfile flag for pnpm in CI pnpm defaults to frozen-lockfile in CI environments, explicitly disable it to allow lockfile updates. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf039d0ab..925beb1fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,7 +77,7 @@ jobs: cache-all-crates: true - name: Install frontend dependencies - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Build Tauri app uses: tauri-apps/tauri-action@v0