From d1b2a2986fe0b0c8db717c338e28cc3685b801d4 Mon Sep 17 00:00:00 2001 From: limitcool Date: Sun, 4 Feb 2024 19:13:29 +0800 Subject: [PATCH] action: update release.yaml --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ddcce7c..8462c59 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -38,11 +38,11 @@ jobs: uses: actions/setup-node@v3 with: node-version: 'lts/*' - cache: 'yarn' # Set this to npm, yarn or pnpm. + cache: 'pnpm' # Set this to npm, yarn or pnpm. - name: Install frontend dependencies # If you don't have `beforeBuildCommand` configured you may want to build your frontend here too. - run: yarn install # Change this to npm, yarn or pnpm. + run: pnpm install # Change this to npm, yarn or pnpm. - name: Build the app uses: tauri-apps/tauri-action@v0