Skip to content

Commit c47b49e

Browse files
author
Stephan Dilly
committed
test windows releaes CI
1 parent 258d131 commit c47b49e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
run: make clippy
2828
- name: Build Release
2929
run: make build-release
30+
- name: Build Win Test Release
31+
if: matrix.os == 'windows-latest'
32+
run: make release-win
3033

3134
build-linux-musl:
3235
runs-on: ubuntu-latest

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ release-mac: build-release
1212
mkdir -p release
1313
tar -C ./target/release/ -czvf ./release/gitui-mac.tar.gz ./gitui
1414

15+
release-win: build-release
16+
mkdir -p release
17+
tar -C ./target/release/ -czvf ./release/gitui-win.tar.gz ./gitui
18+
1519
release-linux-musl:
1620
cargo build --release --target=x86_64-unknown-linux-musl
1721
strip target/x86_64-unknown-linux-musl/release/gitui

0 commit comments

Comments
 (0)