I am running a Azure DevOps Pipeline which generates an .ipa file. This runs on my local agent without any issues, but when I run it on a hosted macOS 10.15 machine, i'll get an error, that the provisioning profile is missing
- task: InstallAppleProvisioningProfile@1 displayName: 'Install an Apple provisioning profile' inputs: provProfileSecureFile: App.mobileprovision - task: InstallAppleCertificate@2 displayName: 'Install an Apple certificate' inputs: certSecureFile: 'Certs.p12' certPwd: xxx - task: Xcode@5 displayName: 'Xcode archive' inputs: actions: archive xcWorkspacePath: 'src/Apps/App/ios/Runner.xcworkspace' scheme: Runner packageApp: true archivePath: 'src/Apps/App/ios/Runner.xcarchive' exportPath: '$(build.artifactstagingdirectory)' signingOption: auto Here's the output of the install provisioning profile task
Starting: Install an Apple provisioning profile ============================================================================== Task : Install Apple provisioning profile Description : Install an Apple provisioning profile required to build on a macOS agent machine Version : 1.171.0 Author : Microsoft Corporation Help : https://learn.microsoft.com/azure/devop ... ng-profile ============================================================================== /usr/bin/security cms -D -i /Users/runner/work/_temp/platypus.mobileprovision AppIDName Platypus identifier ApplicationIdentifierPrefix UM3UVMPGY5 CreationDate 2020-07-31T14:08:38Z Platform iOS IsXcodeManaged DeveloperCertificates MIIF...
Источник: https://stackoverflow.com/questions/631 ... ng-profile