@@ -83,12 +83,12 @@ platform :ios do
8383 skip_submission : true , # Skip beta review for internal testing
8484 distribute_external : false , # Internal testing only (not public beta)
8585 wait_for_uploaded_build : true ,
86- groups : [ "App Store Connect Users " ] , # Auto-distribute to all internal testers
86+ groups : [ "Github Actions Internal " ] , # Auto-distribute to Github Actions Internal group
8787 notify_external_testers : false , # No external notifications
8888 uses_non_exempt_encryption : false # Mark as no encryption to skip export compliance review
8989 )
9090
91- UI . success ( "✅ Successfully distributed build to internal testers (App Store Connect Users )!" )
91+ UI . success ( "✅ Successfully distributed build to internal testers (Github Actions Internal )!" )
9292 rescue => e
9393 UI . error ( "Failed to distribute: #{ e . message } " )
9494 UI . message ( "You may need to manually distribute the build in App Store Connect" )
@@ -203,12 +203,12 @@ platform :ios do
203203 UI . message ( "📧 Public beta mode: Will notify external testers and submit for beta review" )
204204 else
205205 # Internal testing mode - automatically distribute to internal testers
206- # Uses default "App Store Connect Users " group which includes all internal testers
206+ # Uses "Github Actions Internal " group configured in App Store Connect
207207 upload_params . merge! ( {
208- groups : [ "App Store Connect Users " ] , # Auto-distribute to all internal testers
208+ groups : [ "Github Actions Internal " ] , # Auto-distribute to Github Actions Internal group
209209 notify_external_testers : false # No external notifications for internal testing
210210 } )
211- UI . message ( "👥 Internal testing mode: Will auto-distribute to App Store Connect Users (no beta review required)" )
211+ UI . message ( "👥 Internal testing mode: Will auto-distribute to Github Actions Internal group (no beta review required)" )
212212 end
213213
214214 # Upload to TestFlight with automatic distribution
0 commit comments