Skip to content

Commit

Permalink
build: more targeting for places we now use rvm
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastCicada committed May 20, 2024
1 parent b61eb80 commit dd8ef3b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,14 @@ jobs:
echo "USE_SYSTEM_FPM=true" >> "${GITHUB_ENV}"
- name: Build electron app
if: matrix.os.matrix != 'macos'
if: matrix.os.matrix != 'macos' && ( matrix.os.matrix == 'linux' && matrix.arch.matrix != 'arm' )
run: |
npm install
npm run build
npm run package-none -- ${{ matrix.os.electron-builder-options }} ${{ matrix.arch.electron-builder-options }}
- name: Build electron app (Linux ARM)
if: matrix.os.matrix == 'linux' && matrix.arch.matrix == 'arm'
run: |
source ~/.rvm/scripts/rvm
npm install
Expand Down

0 comments on commit dd8ef3b

Please sign in to comment.