We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c1adc2 commit 923eda9Copy full SHA for 923eda9
1 file changed
.github/workflows/build.yml
@@ -32,19 +32,19 @@ jobs:
32
33
- name: Package for macOS
34
if: matrix.os == 'macos-latest'
35
- run: npm run package:mac
+ run: npx electron-builder --mac zip
36
env:
37
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
39
- name: Package for Windows
40
if: matrix.os == 'windows-latest'
41
- run: npm run package:win
+ run: npx electron-builder --win portable
42
43
44
45
- name: Package for Linux
46
if: matrix.os == 'ubuntu-latest'
47
- run: npm run package:linux
+ run: npx electron-builder --linux AppImage
48
49
50
0 commit comments