apple: include git hash in TestFlight message (#17445)

This commit is contained in:
Eric Warmenhoven 2025-01-20 15:38:20 -05:00 committed by GitHub
parent d3a879638d
commit 6fda41900d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -173,10 +173,12 @@ end
private_lane :ra_upload_to_testflight do |options|
if options[:upload].nil? or options[:upload]
info = last_git_commit
short_hash = info[:abbreviated_commit_hash]
upload_to_testflight(
distribute_external: (options[:public].nil? || options[:public]),
groups: options[:public].nil? || options[:public] ? ['Invaders', 'Patreons'] : [],
changelog: "Rebuild frontend from latest master branch and take latest build of all cores."
changelog: "Rebuild frontend for commit #{short_hash}"
)
end
end