Error: No profile for team matching match AppStore found

I searched a lot here, try several approaches but with no success.
I have a React Native and the signing and build process is being done with fastlane.
Trying to export an ad-hoc IPA but I have no idea what is happen on Bitrise (I test in my machine and works properly).

My lane config

desc ā€œiOS Buildā€
lane :build do
ensure_env_vars(env_vars: [ā€˜BITRISE_SCHEMEā€™])
scheme = ENV[ā€˜BITRISE_SCHEMEā€™]
build_type = ENV[ā€˜BITRISE_EXPORT_METHODā€™] || ā€œappstoreā€
export_method = build_type == ā€œadhocā€ ? ā€œad-hocā€ : ā€œapp-storeā€
read_only = build_type.eql? ā€œappstoreā€
renew = build_type.eql? ā€œadhocā€
match(type: build_type, readonly: read_only, force_for_new_devices: renew)
gym(
export_options: export_method,
scheme: scheme,
silent: true
)
upload_to_testflight(skip_waiting_for_build_processing: true)
end

The certificates and profiles are installed properly. Gym summary looks good with the right configuration but I always get error:

 error: No profile for team 'xxx' matching 'match AppStore [REDACTED]' found: Xcode couldn't find any provisioning profiles matching 'xxx/match AppStore [REDACTED]'. Install the profile (by dragging and dropping it onto Xcode's dock item) or select a different one in the Signing & Capabilities tab of the target editor. (in target 'xxx' from project 'xxx')

What I need to do to work properly on Bitrise? App Store export method works fine.
Thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.

Hello!

Are you still having issues with this?

Can you please send the URL for this build and enable support access:

Thank you,

Thi