aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2023-10-17 22:22:39 +0100
committerLibravatar GitHub <noreply@github.com>2023-10-17 22:22:39 +0100
commit3cb073863a34ac89bdd9d9acb56ad7e55f32ea3e (patch)
tree421263ac19f0bf1868295d26a09a2e3aec7f64a7 /.github
parent6.5.2-nightly.3 [skip ci] (diff)
downloadferdium-app-3cb073863a34ac89bdd9d9acb56ad7e55f32ea3e.tar.gz
ferdium-app-3cb073863a34ac89bdd9d9acb56ad7e55f32ea3e.tar.zst
ferdium-app-3cb073863a34ac89bdd9d9acb56ad7e55f32ea3e.zip
Fix arm builds (#1400)
Co-authored-by: André Oliveira <oliveira.andrerodrigues95@gmail.com> (cherry picked from commit f669badf1908284de591ab12399fc3e7ee0c311a) Co-authored-by: Alphrag <34252790+Alphrag@users.noreply.github.com>
Diffstat (limited to '.github')
-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: