Bitrise Build Issue Report template
Description of the issue
I am using fastlane and using match directly in the Fastfile (and made sure I am not including the Bitrise step) and it keeps failing with the following error:
error: No profiles for 'com.alltogether.Hellosaurus' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.alltogether.Hellosaurus'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild. (in target 'Hellosaurus' from project 'Hellosaurus')
But you can see directly above that it properly finds and uses the app store profile
Setting Provisioning Profile type to 'app-store'
My Fastfile is pretty basic:
desc "Push a new beta build to TestFlight"
lane :beta do
xcversion(version: "11.5")
increment_build_number(build_number: latest_testflight_build_number + 1)
match(app_identifier: "com.alltogether.Hellosaurus", type: "appstore", readonly: true)
build_app
upload_to_testflight(username: "ios-dev@hellosaurus.com")
end
Also, I’ve tried totally removing all provisioning profiles from my local machine and “bundle exec fastlane beta” works as expected.
Local reproduction
I am able to run this locally on my machine (Mac) and it works as expected.
Build log
Please let me know if there is any other info I can provide!