CI: Add github-actions renderer options to xcbeautify

This commit is contained in:
PatTheMav
2023-12-06 17:27:12 +01:00
committed by Patrick Heyer
parent f674d17168
commit 40124892cf
+5 -1
View File
@@ -138,7 +138,11 @@ build() {
if (( debug )) {
xcodebuild ${@}
} else {
xcodebuild ${@} 2>&1 | xcbeautify
if [[ ${GITHUB_EVENT_NAME} == push ]] {
xcodebuild ${@} 2>&1 | xcbeautify --renderer terminal
} else {
xcodebuild ${@} 2>&1 | xcbeautify --renderer github-actions
}
}
}