Skip to content

Commit

Permalink
Tweak xcbeautify output for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
defagos committed Dec 3, 2024
1 parent 6f5948f commit d3b7a08
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ def build_and_sign_app(platform_id, configuration_id)
export_team_id: ENV.fetch('TEAM_ID'),
output_directory: 'Binaries',
xcargs: "-authenticationKeyIssuerID #{ENV.fetch('KEY_ISSUER_ID')} -authenticationKeyID #{ENV.fetch('KEY_ID')} " \
"-authenticationKeyPath #{api_key_filepath} -allowProvisioningUpdates"
"-authenticationKeyPath #{api_key_filepath} -allowProvisioningUpdates",
xcodebuild_formatter: 'xcbeautify --quiet --render github-actions'
)
end

Expand Down Expand Up @@ -197,7 +198,8 @@ def run_package_tests(platform_id, scheme_name)
result_bundle: true,
number_of_retries: 3,
clean: true,
xcargs: '-testLanguage en -testRegion en_US'
xcargs: '-testLanguage en -testRegion en_US',
xcodebuild_formatter: 'xcbeautify --quiet --render github-actions'
)
end

Expand Down

0 comments on commit d3b7a08

Please sign in to comment.