如何使用 Fastlane 从我的仓库中读取文件?

How to read file from my repo with Fastlane?

我正在使用 Fastlane 将我的 apk 自动部署到 hockeyApp。我正在尝试用它上传发行说明,但我似乎无法读取存储库中的文件,但 fastlane 似乎找不到它。这是来自 CI 服务器的崩溃报告。提前致谢。

 Error in your Fastfile at line 86
    [09:34:20]:     84:               hockey(api_token: release_token,
    [09:34:20]:     85:                      apk: apk_path,
    [09:34:20]:  => 86:                      notes: File.read(“./auto_deployment/release_notes.txt”))
    [09:34:20]:     87:     end
    [09:34:20]:     88: 
    [09:34:20]: No such file or directory @ rb_sysopen - ./auto_deployment/release_notes.txt

当你执行fastlane时你在projectRoot/fastlane,所以你需要写../auto_deployment/release_notes.txt来访问你想要的文件。