From 742f5e65d3330b2f9be446c07713bb021b3a5251 Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Thu, 9 Nov 2023 04:18:34 -0500 Subject: [PATCH] Replace yarn with npm in ci --- .github/workflows/publish-macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-macos.yml b/.github/workflows/publish-macos.yml index 4fa698d..e83b092 100644 --- a/.github/workflows/publish-macos.yml +++ b/.github/workflows/publish-macos.yml @@ -33,11 +33,11 @@ jobs: uses: actions/setup-node@v3 with: node-version: 'lts/*' - cache: 'yarn' # Set this to npm, yarn or pnpm. + cache: 'npm' # Set this to npm, npm 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: npm install # Change this to npm, yarn or pnpm. - name: Build the app uses: tauri-apps/tauri-action@v0