Skip to content

Commit

Permalink
apple: include git hash in TestFlight message
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven committed Jan 20, 2025
1 parent 68b3e5d commit dc80143
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/apple/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dc80143

Please sign in to comment.