File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 9
9
release :
10
10
strategy :
11
11
matrix :
12
- os : [ubuntu-latest, macos-latest]
12
+ os : [ubuntu-latest, macos-latest, windows-latest ]
13
13
rust : [stable]
14
14
runs-on : ${{ matrix.os }}
15
15
steps :
36
36
- name : Build Release Linux
37
37
if : matrix.os == 'ubuntu-latest'
38
38
run : make release-linux-musl
39
+ - name : Build Release Win
40
+ if : matrix.os == 'windows-latest'
41
+ run : make release-win
39
42
40
43
- name : Set SHA
41
44
if : matrix.os == 'macos-latest'
Original file line number Diff line number Diff line change 29
29
make clippy
30
30
- name : Build Release
31
31
run : make build-release
32
- - name : Build Win Test Release
33
- if : matrix.os == 'windows-latest'
34
- run : make release-win
35
- - uses : actions/upload-artifact@v1
36
- if : matrix.os == 'windows-latest'
37
- with :
38
- name : win-binary
39
- path : ./release/gitui-win.tar.gz
40
32
41
33
build-linux-musl :
42
34
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments