Method: Fastlane::Actions::AppaloosaAction.upload_screenshots
- Defined in:
- fastlane/lib/fastlane/actions/appaloosa.rb
.upload_screenshots(screenshots, api_key, store_id) ⇒ Object
65 66 67 68 69 70 71 |
# File 'fastlane/lib/fastlane/actions/appaloosa.rb', line 65 def self.upload_screenshots(screenshots, api_key, store_id) return if screenshots.nil? list = [] list << screenshots.map do |screen| upload_on_s3(screen, api_key, store_id) end end |