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".

XCode Error

I've checked that it's on my local keychain

Keychain showing certificates

I've checked that the correct certificate is part of the providing profile

apple developer showing development certificate is checked

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 
1

There are 1 answers

0
Cate Daniel On

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