From 06b9a070ca8514107b9869dfd325050cb5403d7f Mon Sep 17 00:00:00 2001 From: coso Date: Mon, 12 Jan 2026 08:27:53 +0800 Subject: [PATCH] fix: use pnpm install without frozen-lockfile in CI The lockfile may have minor differences across pnpm versions, using regular install allows CI to proceed. 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 78c1b76e0..bf039d0ab 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 --frozen-lockfile + run: pnpm install - name: Build Tauri app uses: tauri-apps/tauri-action@v0