From 64667533c27bcde63e653c6fa9641b30ea488caa Mon Sep 17 00:00:00 2001 From: Z4NR34L Date: Mon, 9 Jan 2023 10:00:02 +0100 Subject: [PATCH] Fixing github action --- .github/workflows/releases.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 44caa4e8..9c3e55bc 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -84,12 +84,14 @@ jobs: - name: Sync node version and setup cache uses: actions/setup-node@v3 with: - node-version: 'lts/*' + node-version: '18.x' 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: npm install # Change this to npm, yarn or pnpm. + run: | + npm install + npm run setheapsize - name: Build the app uses: tauri-apps/tauri-action@v0