From 555b39c966099094b0081e6683aaab885d73399f Mon Sep 17 00:00:00 2001 From: Z4NR34L Date: Mon, 9 Jan 2023 08:51:55 +0100 Subject: [PATCH] Forgot to change yarn to npm --- .github/workflows/releases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 910d39bb..389911fe 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -85,11 +85,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, yarn or pnpm. - name: Install app dependencies and build web # Remove `&& yarn build` if you build your frontend in `beforeBuildCommand` - run: yarn && yarn build # Change this to npm, yarn or pnpm. + run: npm && npm build # Change this to npm, yarn or pnpm. - name: Build the app uses: tauri-apps/tauri-action@v0