我已按照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
有谁知道这里出了什么问题?
谢谢。
答案 0 :(得分:1)
changelog_from_git_commits默认情况下提取自上一个标记以来的提交。如果您没有任何标签,那么它将为空。查看changelog_from_git_commits的选项,例如,您将看到可以获取最后X个提交数。