Hi All,
I am running this below azure pipeline for iOS .
all these files are present in securefiles option of azure pipeline settings
name: '$(Rev:r)'
variables:
timeoutInMinutes: 20160 # 2 weeks
tag: '$(Build.BuildNumber)'
certSecureFileName: 'Certificates.p12'
ProvProfileSecureFile : 'Dist_ProvisioningProfileNew.mobileprovision'
pool:
vmImage: 'macOS-13'
this is am getting when i am doing manual signing
2024-11-25T06:52:09.1903570Z /Users/runner/work/1/s/xxxx/xxxx.xcodeproj: error: No profile for team '6BxxxxxxxxL' matching 'com.xxxx.xxxx' found: Xcode couldn't find any provisioning profiles matching '6BxxxxxxxL/com.xxxx.xxxx'. Install the profile (by dragging and dropping it onto Xcode's dock item) or select a different one in the Signing & Capabilities tab of the target editor. (in target 'xxxx' from project 'xxxxxx')
this i am getting while doing automatic signing
2024-11-25T06:00:23.4560330Z /Users/runner/work/1/s/xxxx/xxxx.xcodeproj: error: No profiles for 'com.xxxxx.xxxx' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.xxxx.xxxxx'.
but when i am running the above xcode command in macbook using terminal and adding the profile and certificate file in xcode tool
it is running fine and archiving the artifact also.
So can anyone help me in this why i am getting this issue
i have also tried the task provided by MS for xcode like xcode@5, Xcode@4, Xcode@2
but nothing helped me