我一直在使用fastlane将应用程序上传到曲棍球和testflight。
我也想用于S3并检查他们的文件。我对S3的知识有限。
https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md
s3(
# All of these are used to make Shenzhen's `ipa distribute:s3` command
access_key: ENV['S3_ACCESS_KEY'], # Required from user.
secret_access_key: ENV['S3_SECRET_ACCESS_KEY'], # Required from user.
bucket: ENV['S3_BUCKET'], # Required from user.
ipa: 'AppName.ipa', # Optional is you use `ipa` to build
dsym: 'AppName.app.dSYM.zip', # Optional is you use `ipa` to build
path: 'v{CFBundleShortVersionString}_b{CFBundleVersion}/', # This is actually the default.
upload_metadata: true, # Upload version.json, plist and HTML. Set to false to skip uploading of these files.
version_file_name: 'app_version.json', # Name of the file to upload to S3. Defaults to 'version.json'
version_template_path: 'path/to/erb' # Path to an ERB to configure the structure of the version JSON file
)
如果我需要上传到/ Main / bin / Dev,我的存储桶将是Main。但是我在哪里以及如何描述我的道路?在这里(路径:)?
他们说
建议不要将AWS访问密钥存储在Fastfile中。
如果是这样,我可以在哪里放置AWS访问密钥?它仍将在一个文本文件中,并将提交给svn或git。
答案 0 :(得分:2)
我们的想法是将其存储在环境变量中,通常人们会使用.env。确保不提交。版本控制中的文件。
答案 1 :(得分:1)
关于fastlane的好处是你可以随时下载到shell以使用aws s3命令行工具进行上传。它还消除了在快速通道s3方法中提供所有列出的参数的需要。
sh "aws s3 cp path_to_ipa path_in_s3_where you want to store"
这更容易,也更灵活。这将在健身房完成后调用,你可以上传ipa。