我想使用FastLane将IPA文件上传到Dropbox。我遵循Dropbox文档:https://github.com/tommy071/fastlane-plugin-publish_dropbox和Circleci已经成功运行,但我在dropbox目录中找不到IPA文件。
代码如下:
- run: bundle exec fastlane add_plugin publish_dropbox
publish_dropbox(
file_path: '/Users/distiller/project/output/gym/xxx.ipa',
dropbox_path: 'https://www.dropbox.com/home/xxx%20xxx%20xx%20Folder/Development/xxx-IOS',
app_key: 'xxxxxx',
app_secret: 'xxxxx'
)circleci的进度如下:

此外,我注意到这里有一个dropbox文档。我不知道它是否有用。我应该添加我的项目吗?
Dropbox文档:https://www.dropbox.com/developers/documentation/swift
发布于 2019-03-20 08:54:06
由api密钥和密钥创建的令牌存储在密钥链中。您需要传递keychain_password或设置DROPBOX_KEYCHAIN_PASSWORD环境变量。
在CircleCI中,密钥链密码是一个空字符串,除非您在setup_circle_ci操作中对其进行了更改。
就像医生说的:
如果未提供,插件将要求输入密码
但是插件不能在CI中询问,因为终端不是交互式的。
https://stackoverflow.com/questions/55233124
复制相似问题