Add --what-to-test to iOS submissions (#9856)

Sets the "What to test" field in TestFlight to distinguish between
TestFlight and Production builds.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Samuel Newman
2026-02-11 14:01:27 +00:00
committed by GitHub
parent a25bc8f249
commit 57997d6d16
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -118,7 +118,12 @@ jobs:
fi
- name: 🚀 Deploy
run: eas submit -p ios --non-interactive --path ios-build/ios/build/Bluesky.ipa
env:
PROFILE: ${{ inputs.profile || 'testflight' }}
run: >
eas submit -p ios --non-interactive
--path ios-build/ios/build/Bluesky.ipa
--what-to-test "$([[ "$PROFILE" == "production" ]] && echo "Production build" || echo "TestFlight build")"
- name: 🪲 Upload dSYM to Sentry
run: >
@@ -242,7 +242,7 @@ jobs:
--local --output build.ipa --non-interactive
- name: 🚀 Deploy
run: eas submit -p ios --non-interactive --path build.ipa
run: eas submit -p ios --non-interactive --path build.ipa --what-to-test "TestFlight build"
- name: ⬇️ Restore Cache
id: get-base-commit