File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 66 build :
77 strategy :
88 matrix :
9- os : [windows-latest]
9+ os : [windows-latest, ubuntu-latest, macos-latest ]
1010 runs-on : ${{ matrix.os }}
1111
1212 steps :
3939 shell : pwsh
4040 if : runner.os == 'Windows'
4141
42+ - name : Zip the build (macOS)
43+ run : |
44+ ZIP_NAME="macos.zip"
45+ zip -r "$ZIP_NAME" out-desktop
46+ shell : bash
47+ if : runner.os == 'macOS'
48+
4249 - name : Create Release Build (Linux)
4350 uses : softprops/action-gh-release@v2
4451 with :
5057 with :
5158 files : windows-x64.zip
5259 if : runner.os == 'Windows' && startsWith(github.ref, 'refs/tags/')
60+
61+ - name : Create Release Build (macOS)
62+ uses : softprops/action-gh-release@v2
63+ with :
64+ files : macos.zip
65+ if : runner.os == 'macOS' && startsWith(github.ref, 'refs/tags/')
You can’t perform that action at this time.
0 commit comments