Skip to content

Commit ac8cae6

Browse files
author
Stephan Dilly
committed
next try
1 parent c47b49e commit ac8cae6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
- name: Build Win Test Release
3131
if: matrix.os == 'windows-latest'
3232
run: make release-win
33+
- uses: actions/upload-artifact@v1
34+
if: matrix.os == 'windows-latest'
35+
with:
36+
name: win-binary
37+
path: ./release/gitui-win.tar.gz
3338

3439
build-linux-musl:
3540
runs-on: ubuntu-latest

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ release-mac: build-release
1414

1515
release-win: build-release
1616
mkdir -p release
17-
tar -C ./target/release/ -czvf ./release/gitui-win.tar.gz ./gitui
17+
tar -C ./target/release/ -czvf ./release/gitui-win.tar.gz ./gitui.exe
1818

1919
release-linux-musl:
2020
cargo build --release --target=x86_64-unknown-linux-musl

0 commit comments

Comments
 (0)