From dc801439dfbd86feb640d9c224b830d4d8a15e45 Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Mon, 20 Jan 2025 15:02:04 -0500 Subject: [PATCH] apple: include git hash in TestFlight message --- pkg/apple/fastlane/Fastfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/apple/fastlane/Fastfile b/pkg/apple/fastlane/Fastfile index e3948b0c579d..e2b7302d756a 100644 --- a/pkg/apple/fastlane/Fastfile +++ b/pkg/apple/fastlane/Fastfile @@ -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