Bluesky app fork with some witchin' additions 💫

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>

authored by samuel.fm

Claude Opus 4.6 and committed by
GitHub
57997d6d a25bc8f2

+7 -2
+6 -1
.github/workflows/build-submit-ios.yml
··· 118 118 fi 119 119 120 120 - name: 🚀 Deploy 121 - run: eas submit -p ios --non-interactive --path ios-build/ios/build/Bluesky.ipa 121 + env: 122 + PROFILE: ${{ inputs.profile || 'testflight' }} 123 + run: > 124 + eas submit -p ios --non-interactive 125 + --path ios-build/ios/build/Bluesky.ipa 126 + --what-to-test "$([[ "$PROFILE" == "production" ]] && echo "Production build" || echo "TestFlight build")" 122 127 123 128 - name: 🪲 Upload dSYM to Sentry 124 129 run: >
+1 -1
.github/workflows/bundle-deploy-eas-update.yml
··· 242 242 --local --output build.ipa --non-interactive 243 243 244 244 - name: 🚀 Deploy 245 - run: eas submit -p ios --non-interactive --path build.ipa 245 + run: eas submit -p ios --non-interactive --path build.ipa --what-to-test "TestFlight build" 246 246 247 247 - name: ⬇️ Restore Cache 248 248 id: get-base-commit