Azure Devops 中的 Nativescript iOS 应用程序签名应用程序

发布于 2025-01-12 13:43:14 字数 187 浏览 0 评论 0原文

我有一个构建 ipa 和 xcarchive 的管道。目前,我必须将 xcarchive 下载到我的 Mac 上并打开它,分发应用程序并使用 codesign 对其进行签名。理想情况下,我希望在 Azure Devops Pipeline 中实现这一目标。有没有一种简单的方法来分发 xcarchive、获取 ipa、对其进行签名并将 ipa 发布到管道工件?

I have a pipeline that builds an ipa and an xcarchive. Currently, I have to download the xcarchive onto my Mac and open it, distribute the app and sign it using codesign. Ideally, I would like to achieve this in an Azure Devops Pipeline. Is there an easy way to distribute the xcarchive, grab the ipa, sign it and publish the ipa to the pipeline artifact?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

開玄 2025-01-19 13:43:14

如果要在 Azure Pipelines 中签署应用程序,可以尝试使用 Xcode 管道任务中的“签名和配置”选项。

首先,您可以将 Apple 证书和配置文件存储为 在 Azure DevOps 中保护文件

然后,您可以使用 安装 Apple 证书安装 Apple配置配置文件任务从安全文件中安装它们,并在构建期间使它们可供 Xcode 使用。

当您使用 Xcode 任务时,请填写 签名和配置选项,例如选择签名选项和其他详细信息。同时,Xcode任务还可以帮助您构建项目。

之后,您可以将构建输出发布到管道工件。

If you want to sign app in Azure Pipelines, you could try with the Signing and provisioning options in Xcode pipeline task.

First, you could store your Apple certificate and Provisioning Profile as the secure files in Azure DevOps.

Then, you could use the Install Apple Certificate and Install Apple Provisioning Profile tasks install them from the secure files and make them available to Xcode during a build.

When you use Xcode task, please fill the inputs for Signing and provisioning options, such as selecting the signingoptions and other details. Meanwhile, the Xcode task also helps you build the project.

After that, you could publish the build output to your pipeline artifact.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文