在 Xcode 中进行代码签名后自动创建 Zip
我的构建过程中有一个自定义脚本步骤,用于压缩可执行文件。然而,这是在可执行文件签名之前执行的,这是非常无用的。
有没有办法在 Xcode 构建过程中对代码进行签名后压缩构建输出。如果需要的话,我当然可以在外部执行此操作,但我想让它成为我的 Xcode 构建脚本的一部分。
I have a custom script step in my build process that zips the executable. However this is executing before the executable is signed which is pretty useless.
Is there a way to zip the build output after the code is signed, within the Xcode build process. I can certainly do it externally if i need to, but I'd like to make it part of my Xcode build script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您会创建一个聚合目标,首先构建主目标,然后运行运行脚本构建阶段对其进行后处理。
Generally you'd create an Aggregate Target that first builds your main target, then runs a Run Script Build Phase to postprocess it.