From cc98203a030dc593aa8187d5d5804b432f60cbad Mon Sep 17 00:00:00 2001 From: souvik Date: Tue, 22 Oct 2024 09:08:43 +0530 Subject: [PATCH] fix: update npm to latest for windows --- .github/workflows/upload-release-assets.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/upload-release-assets.yml b/.github/workflows/upload-release-assets.yml index e0018e4b0b9..b7bb3bc34e3 100644 --- a/.github/workflows/upload-release-assets.yml +++ b/.github/workflows/upload-release-assets.yml @@ -62,11 +62,11 @@ jobs: #fix for windows build issue #1433 name: Install p7zip-full nsis run: sudo apt-get install -y p7zip-full nsis - - if: steps.lockversion.outputs.version == '18' && matrix.os == 'windows-latest' + - if: matrix.os == 'windows-latest' #npm cli 10 is buggy because of some cache issue - name: Install npm cli 8 + name: Install npm cli 10 shell: bash - run: npm install -g npm@8.19.4 + run: npm install -g npm@latest - name: Install dependencies run: npm ci - name: Build project