I have a Fastfile that performs the uploadToTestFlight
action:
uploadToTestflight(
username: "foo@example.com",
skipWaitingForBuildProcessing: false,
distributeExternal: true)
This succeeded when I ran it. However, it didn't actually distribute the build to anyone. When I look at the build on App Store Connect > My Apps > Foo App > TestFlight > iOS, it says "Approved" near the build name, which implies that it already went through the review process.
However, when I click on the build, I notice that the only groups or users to which it was released to is App Store Connect Users
, meaning it wasn't actually externally released.
I have a group named Foo Group
which I would like to release it to whenever I run fastlane. How do I do that?
I tried resolving via the documentation for Pilot but it doesn't have an example with distributing externally.