We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf1290 commit 218d739Copy full SHA for 218d739
.github/workflows/cd.yml
@@ -68,16 +68,24 @@ jobs:
68
69
- name: Build Release Mac
70
if: matrix.os == 'macos-latest'
71
- run: GITUI_RELEASE=1 make release-mac
+ env:
72
+ GITUI_RELEASE: 1
73
+ run: make release-mac
74
- name: Build Release Linux
75
if: matrix.os == 'ubuntu-latest'
- run: GITUI_RELEASE=1 make release-linux-musl
76
77
78
+ run: make release-linux-musl
79
- name: Build Release Win
80
if: matrix.os == 'windows-latest'
- run: GITUI_RELEASE=1 make release-win
81
82
83
+ run: make release-win
84
- name: Build Release Linux ARM
85
if: matrix.os == 'ubuntu-22.04'
- run: GITUI_RELEASE=1 make release-linux-arm
86
87
88
+ run: make release-linux-arm
89
90
- name: Set SHA
91
0 commit comments