We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f674d17 commit 4012489Copy full SHA for 4012489
1 file changed
.github/scripts/.build.zsh
@@ -138,7 +138,11 @@ build() {
138
if (( debug )) {
139
xcodebuild ${@}
140
} else {
141
- xcodebuild ${@} 2>&1 | xcbeautify
+ if [[ ${GITHUB_EVENT_NAME} == push ]] {
142
+ xcodebuild ${@} 2>&1 | xcbeautify --renderer terminal
143
+ } else {
144
+ xcodebuild ${@} 2>&1 | xcbeautify --renderer github-actions
145
+ }
146
}
147
148
0 commit comments