mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
fix windows release
This commit is contained in:
parent
4bf1290610
commit
218d739b03
1 changed files with 12 additions and 4 deletions
16
.github/workflows/cd.yml
vendored
16
.github/workflows/cd.yml
vendored
|
|
@ -68,16 +68,24 @@ jobs:
|
||||||
|
|
||||||
- name: Build Release Mac
|
- name: Build Release Mac
|
||||||
if: matrix.os == 'macos-latest'
|
if: matrix.os == 'macos-latest'
|
||||||
run: GITUI_RELEASE=1 make release-mac
|
env:
|
||||||
|
GITUI_RELEASE: 1
|
||||||
|
run: make release-mac
|
||||||
- name: Build Release Linux
|
- name: Build Release Linux
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: GITUI_RELEASE=1 make release-linux-musl
|
env:
|
||||||
|
GITUI_RELEASE: 1
|
||||||
|
run: make release-linux-musl
|
||||||
- name: Build Release Win
|
- name: Build Release Win
|
||||||
if: matrix.os == 'windows-latest'
|
if: matrix.os == 'windows-latest'
|
||||||
run: GITUI_RELEASE=1 make release-win
|
env:
|
||||||
|
GITUI_RELEASE: 1
|
||||||
|
run: make release-win
|
||||||
- name: Build Release Linux ARM
|
- name: Build Release Linux ARM
|
||||||
if: matrix.os == 'ubuntu-22.04'
|
if: matrix.os == 'ubuntu-22.04'
|
||||||
run: GITUI_RELEASE=1 make release-linux-arm
|
env:
|
||||||
|
GITUI_RELEASE: 1
|
||||||
|
run: make release-linux-arm
|
||||||
|
|
||||||
- name: Set SHA
|
- name: Set SHA
|
||||||
if: matrix.os == 'macos-latest'
|
if: matrix.os == 'macos-latest'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue