summaryrefslogtreecommitdiffstats
path: root/.github/workflows/builds.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/builds.yml')
-rw-r--r--.github/workflows/builds.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 84feaa167..8e5f6c9bf 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -356,6 +356,14 @@ jobs:
356 with: 356 with:
357 node-version-file: '.nvmrc' 357 node-version-file: '.nvmrc'
358 cache: 'pnpm' 358 cache: 'pnpm'
359 #TODO - Remove this once https://github.com/electron-userland/electron-builder/issues/6933#issuecomment-1213438889 is resolved
360 - name: Tweak pnpm.cjs
361 run: |
362 # Run the command to get the pnpm store path and store it in a variable
363 PNPM_BASEDIR=$(dirname "$(echo "$PNPM_HOME" | sed -e 's/\\/\//g' -e 's/^\([A-Za-z]\):/\/\1/')")
364
365 sed -i 's/\/usr\/bin\/env node/node/g' "$PNPM_BASEDIR/pnpm/bin/pnpm.cjs"
366 shell: bash
359 - name: Install node dependencies 367 - name: Install node dependencies
360 uses: nick-fields/retry@v2.8.3 368 uses: nick-fields/retry@v2.8.3
361 with: 369 with: