mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
release win binaries aswell
This commit is contained in:
parent
db805153dc
commit
d22571c919
2 changed files with 4 additions and 9 deletions
5
.github/workflows/cd.yml
vendored
5
.github/workflows/cd.yml
vendored
|
|
@ -9,7 +9,7 @@ jobs:
|
|||
release:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
rust: [stable]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
|
|
@ -36,6 +36,9 @@ jobs:
|
|||
- name: Build Release Linux
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: make release-linux-musl
|
||||
- name: Build Release Win
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: make release-win
|
||||
|
||||
- name: Set SHA
|
||||
if: matrix.os == 'macos-latest'
|
||||
|
|
|
|||
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -29,14 +29,6 @@ jobs:
|
|||
make clippy
|
||||
- name: Build Release
|
||||
run: make build-release
|
||||
- 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
|
||||
|
|
|
|||
Loading…
Reference in a new issue