使用 fastlane 上传到 S3
Uploading to S3 with fastlane
我一直在使用 fastlane 将应用程序上传到 hockey 和 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。但是我在哪里以及如何描述我的道路?它在这里 (路径:) 吗?
他们说
It is recommended to not store the AWS access keys in the Fastfile.
如果可以,我可以将 AWS 访问密钥放在哪里?它仍将位于其中一个文本文件中,并将提交给 svn 或 git.
这个想法是将它存储在一个环境变量中,通常人们为此使用 .env。确保不提交 .版本控制中的文件。
fastlane 的妙处在于,您始终可以下拉至 shell 以使用 aws s3 命令行工具进行上传。它还消除了在快速通道 s3 方法中提供所有列出的参数的需要。
sh "aws s3 cp path_to_ipa path_in_s3_where you want to store"
这样更容易也更灵活。这将在 gym 完成并且您有要上传的 ipa 后调用。
我一直在使用 fastlane 将应用程序上传到 hockey 和 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。但是我在哪里以及如何描述我的道路?它在这里 (路径:) 吗?
他们说
It is recommended to not store the AWS access keys in the Fastfile.
如果可以,我可以将 AWS 访问密钥放在哪里?它仍将位于其中一个文本文件中,并将提交给 svn 或 git.
这个想法是将它存储在一个环境变量中,通常人们为此使用 .env。确保不提交 .版本控制中的文件。
fastlane 的妙处在于,您始终可以下拉至 shell 以使用 aws s3 命令行工具进行上传。它还消除了在快速通道 s3 方法中提供所有列出的参数的需要。
sh "aws s3 cp path_to_ipa path_in_s3_where you want to store"
这样更容易也更灵活。这将在 gym 完成并且您有要上传的 ipa 后调用。