2

我已按照 fastlane 文档 ( https://docs.fastlane.tools/getting-started/android/beta-deployment/ ) 中的说明将我的 Git 提交生成的发行说明添加到我的 beta 部署中。

但是,fabric.io 仪表板中的发行说明始终为空白。

这是我的快速文件:

default_platform(:android)

platform :android do
  desc "Runs all the tests"
  lane :unit_tests do
    gradle(task: "test")
  end

  desc "Submit a new Beta Build to Crashlytics Beta"
  lane :deploy_to_crashlytics do
    gradle(task: "clean assembleRelease")
    changelog_from_git_commits
    crashlytics(
      api_token: ENV["CRASHLYTICS_API_TOKEN"],
      build_secret: ENV["CRASHLYTICS_BUILD_SECRET"],
      groups: 'beta-testers'
    )

    # sh "your_script.sh"
    # You can also use other beta testing services here
  end

  desc "Deploy a new version to the Google Play"
  lane :deploy_to_play_store do
    gradle(task: "clean assembleRelease")
    upload_to_play_store
  end
end

有谁知道这里出了什么问题?

谢谢你。

4

1 回答 1

0

changelog_from_git_commits 默认获取自最后一个标签以来的提交。如果你没有任何标签,那么它将是空的。例如,查看changelog_from_git_commits的选项,您会看到可以获取最后 X 个提交。

于 2018-06-14T07:38:17.037 回答