My release lane looks something like this, but it ultimately fails with a code signing error (see below). The app gets built though, and if I fiddle around in xcode and change Signing (Release) then I can get xcode to build my app for release. But, why doesn't the ionic build command finish successfully? It seems like I've matched my app store profile right before building with ionic - so it should work?
Thanks!
(I'm using git_branch and team_id with match because I work across multiple development teams)
lane :release do
match(
type: 'appstore',
git_branch: 'branch_name',
app_identifier: "my.app.identifier",
readonly: false,
username: 'my_apple_email@foo.com',
team_id: 'my_team_id'
)
ionic(
platform: 'ios',
prod: true,
release: true
)
end
Error:
Code Signing Error: Provisioning profile "match AppStore my.app.identifier" doesn't include signing certificate "iPhone Developer: My NAME (ABCDEF1234)".
My release lane looks something like this, but it ultimately fails with a code signing error (see below). The app gets built though, and if I fiddle around in xcode and change
Signing (Release)then I can get xcode to build my app for release. But, why doesn't the ionic build command finish successfully? It seems like I've matched my app store profile right before building withionic- so it should work?Thanks!
(I'm using git_branch and team_id with
matchbecause I work across multiple development teams)Error:
Code Signing Error: Provisioning profile "match AppStore my.app.identifier" doesn't include signing certificate "iPhone Developer: My NAME (ABCDEF1234)".