I had this issue trying to upload to TestFlight using Fastlane. My issue was that I had set the build_app configuration to Debug instead of release. I guess Testflight does not allow the debug to be active. Changing it to Release fixed the issue and I could upload it.
Not working:
lane :build_alpha_release do
match(type: "appstore")
build_app(
scheme: "YourScheme",
export_method: "app-store",
configuration: "Debug", # This wont work
)
end
Working:
lane :build_alpha_release do
match(type: "appstore")
build_app(
scheme: "YourScheme",
export_method: "app-store",
configuration: "Release", # This works
)
end