ci: add prebuild for electron 32 bit windows (#584)

There is a many leading electron applications which is supports windows 32bit version. So it will be good to have a prebuild for that.

Co-authored-by: Joshua Wise <8255757+JoshuaWise@users.noreply.github.com>
This commit is contained in:
Ameen Rashad Vazhayil 2021-10-25 06:20:55 -07:00 committed by GitHub
parent b433c8a2ee
commit ff15af59da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,3 +69,5 @@ jobs:
- run: npm install --ignore-scripts
- run: npx --no-install prebuild -r node -t 10.20.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 --include-regex 'better_sqlite3.node$' -u ${{ secrets.GITHUB_TOKEN }}
- run: npx --no-install prebuild -r electron -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 --include-regex 'better_sqlite3.node$' -u ${{ secrets.GITHUB_TOKEN }}
- if: matrix.os == 'windows-latest'
run: npx --no-install prebuild -r electron -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 --include-regex 'better_sqlite3.node$' --arch ia32 -u ${{ secrets.GITHUB_TOKEN }}