File tree 1 file changed +12
-4
lines changed
1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -68,16 +68,24 @@ jobs:
68
68
69
69
- name : Build Release Mac
70
70
if : matrix.os == 'macos-latest'
71
- run : GITUI_RELEASE=1 make release-mac
71
+ env :
72
+ GITUI_RELEASE : 1
73
+ run : make release-mac
72
74
- name : Build Release Linux
73
75
if : matrix.os == 'ubuntu-latest'
74
- run : GITUI_RELEASE=1 make release-linux-musl
76
+ env :
77
+ GITUI_RELEASE : 1
78
+ run : make release-linux-musl
75
79
- name : Build Release Win
76
80
if : matrix.os == 'windows-latest'
77
- run : GITUI_RELEASE=1 make release-win
81
+ env :
82
+ GITUI_RELEASE : 1
83
+ run : make release-win
78
84
- name : Build Release Linux ARM
79
85
if : matrix.os == 'ubuntu-22.04'
80
- run : GITUI_RELEASE=1 make release-linux-arm
86
+ env :
87
+ GITUI_RELEASE : 1
88
+ run : make release-linux-arm
81
89
82
90
- name : Set SHA
83
91
if : matrix.os == 'macos-latest'
You can’t perform that action at this time.
0 commit comments