From c6a362fc5f418dc472dbf713bece0cb31cb16d15 Mon Sep 17 00:00:00 2001 From: Z4NR34L Date: Mon, 9 Jan 2023 10:20:38 +0100 Subject: [PATCH] Fixed setheapsize to not run on windows --- .github/workflows/releases.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index e1806d4b..4989914c 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -91,6 +91,11 @@ jobs: # Remove `&& yarn build` if you build your frontend in `beforeBuildCommand` run: | npm install + + - name: Set heap size on macos and ubuntu + if: matrix.platform != 'windows-latest' + # Remove `&& yarn build` if you build your frontend in `beforeBuildCommand` + run: | npm run setheapsize - name: Build the app