Fastlane:将工件发送到外部组
Posted
技术标签:
【中文标题】Fastlane:将工件发送到外部组【英文标题】:Fastlane: Send artifect to External Groups 【发布时间】:2021-06-09 21:25:59 【问题描述】:在我们的团队中,我们正在尝试在不上传 .Ipa 的情况下将工件发送到 TestFlight 中的外部组。
我们使用 Pilot() 来构建解决方案。但是当我们在管道中运行这个命令时:
upload_to_testflight(
api_key: api_key,
build_number: ENV["ios_BUILD"],
changelog: "Esto es una prueba Automatizada.",
distribute_external: true,
groups: "Pruebas POS",
skip_submission: true,
skip_waiting_for_build_processing: false
)
我们收到这条消息:
+------+---------------------------+-------------+
| fastlane summary |
+------+---------------------------+-------------+
| Step | Action | Time (in s) |
+------+---------------------------+-------------+
| 1 | default_platform | 0 |
| 2 | update_info_plist | 0 |
| 3 | app_store_connect_api_key | 0 |
| ???? | upload_to_testflight | 0 |
+------+---------------------------+-------------+
[20:59:14]: fastlane finished with errors
[!] No ipa file given
当我们向 .Ipa 提供命令时,我之前写过,我们会收到另一条消息:
upload_to_testflight(
api_key: api_key,
build_number: ENV["IOS_BUILD"],
changelog: "Esto es una prueba Automatizada.",
distribute_external: true,
groups: "Pruebas POS",
ipa: "build/App.ipa",
skip_submission: true,
skip_waiting_for_build_processing: false
)
Error uploading ipa file:
[Transporter Error Output]: ERROR ITMS-90189: Redundant Binary Upload. You've
already uploaded a build with build number '106.5' for version number '3.5.2'.
Make sure you increment the build string before you upload your
app to App Store Connect.
有人遇到过 Pilot 的这个问题吗?我们不需要上传 .Ipa。我们只需要从内部组传递到外部组。
提前致谢。 问候
【问题讨论】:
【参考方案1】:如果其他人来寻找这个问题的答案,fastlane Pilot 中的distribute_external 选项将需要:
-
ipa 文件路径(如 OP 所示);或者,
distribute_only 选项设置为 true
distribute_only 选项将自动默认为 TestFlight 中的最新版本/构建。如果您想指定特定版本和内部版本号,可以使用 app_version 和 build_number 选项来指定它们。
【讨论】:
以上是关于Fastlane:将工件发送到外部组的主要内容,如果未能解决你的问题,请参考以下文章
将 GitLab CI CD 管道的 .text 输出发送到工件模块
Fastlane - 如何通过组将用户添加到 Testflight?
在 IntelliJ IDEA 中将外部库添加到工件 jar