ionic-team/trapeze

How to specify provisioning profile in .yaml config file

BastienCivel opened this issue · 1 comments

Hello,

I have a mobile application in Angular ionic with capacitor, and it uses trapeze for the CI/CD.
I have trouble understanding how can I specify the provisioning profile directly from the .yaml config file ?
I'd like my .pbxproj file to have the correct profile after the trapeze build or any other way that would let me do it.

Thanks in advance !

Here's what I ended up with:

platforms:
  ios:
    targets:
      builds:
        Release:
          buildSettings:
            CODE_SIGN_STYLE: Manual
            CODE_SIGN_IDENTITY: iPhone Distribution
            DEVELOPMENT_TEAM: ABCDE12345
            PROVISIONING_PROFILE_SPECIFIER: My Profile

EDIT:
Disregard the manual signing bit. It seems that's not supported by capacitor at the moment.