I'm using fastlane to build my app and I'm unable to build at the moment.
In code I can see this error "match Development XXX" doesn't include signing certificate "Apple Development: XXXX".
I've checked that it's on my local keychain
I've checked that the correct certificate is part of the providing profile
I've run
fastlane nuke development
fastlane nuke distribution
Both have been run twice.
Match doesnt' download the proper certificate?
Matchfile
git_url("[email protected]:REPO/iOS-Profile.git")
storage_mode("git")
type("development") # The default type, can be: appstore, adhoc, enterprise or development
app_identifier(["XXX.dev", "XX.Tests"])
clone_branch_directly(true)
# username("[email protected]") # Your Apple Developer Portal username
# For all available options run `fastlane match --help`
# Remove the # in the beginning of the line to enable the other options
# The docs are available on https://docs.fastlane.tools/actions/match
Deleting not only the certificate, but the private keys on keychain fixed the problem on CI. I still see this locally, but it's not a blocker