无法使用Fastlane将变更日志上传到TestFlight

问题描述

我正在尝试使我的TestFlight构建自动化。它在大多数情况下都很好用,但是当我包含变更日志时,它声称它“已成功为构建设置变更日志” ,但是我在AppStore Connect的任何地方都找不到变更日志文本。它也不会出现在TestFlight中。

这是我的车道:

platform :ios do
  desc "Push a new dev build to TestFlight"
  lane :dev do
    increment_build_number(xcodeproj: "MyApp.xcodeproj")
    build_app(workspace: "MyApp.xcworkspace",scheme: "devMyApp")
    changelog = changelog_from_git_commits
    add_git_tag
    upload_to_testflight(
      app_identifier: "com.myApp.dev",changelog: changelog
    )
  end
end

当通道被执行时,我可以看到它已成功构建,它从上一个标记开始提取git commit消息,它上载,等待应用程序出现,并且它应该设置构建的变更日志。更改日志只是没有出现在任何地方。

有什么想法吗?

解决方法

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

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

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