mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 00:48:35 +00:00
next try
This commit is contained in:
parent
c47b49e7a1
commit
ac8cae6e84
2 changed files with 6 additions and 1 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -30,6 +30,11 @@ jobs:
|
|||
- name: Build Win Test Release
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: make release-win
|
||||
- uses: actions/upload-artifact@v1
|
||||
if: matrix.os == 'windows-latest'
|
||||
with:
|
||||
name: win-binary
|
||||
path: ./release/gitui-win.tar.gz
|
||||
|
||||
build-linux-musl:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -14,7 +14,7 @@ release-mac: build-release
|
|||
|
||||
release-win: build-release
|
||||
mkdir -p release
|
||||
tar -C ./target/release/ -czvf ./release/gitui-win.tar.gz ./gitui
|
||||
tar -C ./target/release/ -czvf ./release/gitui-win.tar.gz ./gitui.exe
|
||||
|
||||
release-linux-musl:
|
||||
cargo build --release --target=x86_64-unknown-linux-musl
|
||||
|
|
|
|||
Loading…
Reference in a new issue