[rel-1.16.0] Use name of temporary provisioning profile. (#17456)

### Description
<!-- Describe your changes. -->

Use name of temporary provisioning profile.

### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->

The old provisioning profile no longer works. Switched to a temporary
one that we can use before a new one is available. The temporary one has
a different name.

Alternative to #17454.
This commit is contained in:
Edward Chen 2023-09-07 19:01:10 -07:00 committed by GitHub
parent 4296043d94
commit 2406e9c567
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,8 @@ stages:
xcodeDeveloperDir: '/Applications/Xcode_${{ variables.xcodeVersion }}.app/Contents/Developer'
signingOption: 'manual'
signingIdentity: '$(APPLE_CERTIFICATE_SIGNING_IDENTITY)'
provisioningProfileName: 'iOS Team Provisioning Profile'
provisioningProfileName: 'temporary *' # temporary name, change it back to the original below later
#provisioningProfileName: 'iOS Team Provisioning Profile'
args: '-derivedDataPath $(Build.BinariesDirectory)/app_center_test/ios_package_test/DerivedData'
workingDirectory: '$(Build.BinariesDirectory)/app_center_test/ios_package_test/'
displayName: 'Build App Center iPhone arm64 tests'