AzureDevOps管道IOS如何下载Provisions配置文件以嵌入到应用程序包中,

问题描述

我有一个使用Mac管道成功编译的iOS应用 使用本教程:
https://docs.microsoft.com/en-us/azure/devops/pipelines/ecosystems/xcode?view=azure-devops
我缺少自动从Apple帐户下载配置文件的部分(如果可能的话) 也许使用Fastlane?
我需要:
要下载Provision配置文件以嵌入应用内捆绑包,我不需要发布该应用,只需使用Provision配置文件进行编译即可。

更新 我可以以某种方式安装ruby和Fastline一次吗,因为每个版本只需要花费几分钟就可以安装它, 我正在使用:

- script: |
     gem install bundler
     bundle update --bundler
     bundle install --retry=3 --jobs=4
     ls -la
     pwd
    workingDirectory: '$(System.ArtifactsDirectory)'
    displayName: 'bundle install'

  - script: 'gem install fastlane  -NV'
    workingDirectory: '$(System.ArtifactsDirectory)'
    displayName: 'Install fastlane' 

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)