微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Fastlane:将工件发送到外部组

如何解决Fastlane:将工件发送到外部组

在我们的团队中,我们试图在不上传 .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,ipa: "build/App.ipa",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。我们只需要从内部组传递到外部组。

提前致谢。 问候

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。