Skip to content

Commit d22571c

Browse files
author
Stephan Dilly
committed
release win binaries aswell
1 parent db80515 commit d22571c

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release:
1010
strategy:
1111
matrix:
12-
os: [ubuntu-latest, macos-latest]
12+
os: [ubuntu-latest, macos-latest, windows-latest]
1313
rust: [stable]
1414
runs-on: ${{ matrix.os }}
1515
steps:
@@ -36,6 +36,9 @@ jobs:
3636
- name: Build Release Linux
3737
if: matrix.os == 'ubuntu-latest'
3838
run: make release-linux-musl
39+
- name: Build Release Win
40+
if: matrix.os == 'windows-latest'
41+
run: make release-win
3942

4043
- name: Set SHA
4144
if: matrix.os == 'macos-latest'

.github/workflows/ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,6 @@ jobs:
2929
make clippy
3030
- name: Build Release
3131
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
4032

4133
build-linux-musl:
4234
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)