小编CNO*_*CNO的帖子

适用于iOS本机ap的Azure DevOps,AppCenter Distribute失败

我正在尝试将IPA发布到App Center,用于我的构建定义的YAML如下:

# Xcode
# Build, test, and archive an Xcode workspace on macOS.
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/xcode

pool:
  vmImage: 'macOS-10.13'

trigger: none

variables:
  - name: SDK
    value: iphoneos
  - name: Configuration
    value: ReleasePPD

steps:
- task: DeleteFiles@1
  inputs:
    SourceFolder: '$(system.defaultWorkingDirectory)'
    Contents: 'AuraApp.xcworkspace'
- task: CocoaPods@0
  inputs:
    forceRepoUpdate: false
  displayName: 'pod install using the CocoaPods task'

- task: InstallAppleCertificate@2
  inputs:
    certSecureFile: 'ios_distribution.p12'

- task: InstallAppleProvisioningProfile@1 …
Run Code Online (Sandbox Code Playgroud)

xcodebuild azure-devops visual-studio-app-center-distribute

7
推荐指数
0
解决办法
653
查看次数