Fastlane couldnt find the profile which is mapped using match #26869
Unanswered
GowthamChintaCallsign
asked this question in
Q&A
Replies: 1 comment
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using fastlane for my gitlab CI/CD. When performing build operation. I get error
error: No profiles for 'com.callsign.app.testapp.reactnative' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.callsign.app.testapp.reactnative'. (in target 'CallsignReactNativeTestApp' from project 'CallsignReactNativeTestApp')I could see profile is properly loaded.
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| Lane Context |
+------------------------------------+---------------------------------------------------------------------------------------------------------------+
| DEFAULT_PLATFORM | ios |
| PLATFORM_NAME | ios |
| LANE_NAME | ios build |
| KEYCHAIN_PATH | ~/Library/Keychains/fastlane_tmp_keychain |
| ORIGINAL_DEFAULT_KEYCHAIN | "/Users/gitlab/Library/Keychains/login.keychain-db" |
| SIGH_PROFILE_TYPE | development |
| MATCH_PROVISIONING_PROFILE_MAPPING | {"com.callsign.app.testapp.reactnative"=>"match Development com.callsign.app.testapp.reactnative 1729675202"} |
+------------------------------------+---------------------------------------------------------------------------------------------------------------+
my fastfile configuration is
default_platform(:ios)
platform :ios do
desc "Build and sign the application for development"
lane :build do
setup_ci
end
end
what I might be missing here?
Beta Was this translation helpful? Give feedback.
All reactions