File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,20 @@ jobs:
79
79
shell : powershell
80
80
81
81
# Build
82
- - name : Common - Build
82
+ - name : Linux - Build
83
+ if : runner.os == 'Linux'
83
84
shell : bash
84
- # compression will warn if upx is not installed (windows/macOS) but will not break the build
85
85
run : wails build -platform ${{ matrix.build.platform }} -upx -o ${{ matrix.build.name }}
86
+ - name : Windows - Build
87
+ if : runner.os == 'Windows'
88
+ shell : bash
89
+ run : |
90
+ wails build -platform ${{ matrix.build.platform }} -o ${{ matrix.build.name }}.exe
91
+ wails build -platform ${{ matrix.build.platform }} -upx -o ${{ matrix.build.name }}-compressed.exe
92
+ - name : MacOS - Build
93
+ if : runner.os == 'macOS'
94
+ shell : bash
95
+ run : wails build -platform ${{ matrix.build.platform }} -o ${{ matrix.build.name }}
86
96
87
97
# Package MacOS
88
98
- name : MacOS - Build .app zip file
You can’t perform that action at this time.
0 commit comments