match/lib/match/storage.rb in fastlane-2.142.0 vs match/lib/match/storage.rb in fastlane-2.143.0

- old
+ new

@@ -1,8 +1,9 @@ require_relative 'storage/interface' require_relative 'storage/git_storage' require_relative 'storage/google_cloud_storage' +require_relative 'storage/s3_storage' module Match module Storage class << self def backends @@ -10,9 +11,12 @@ "git" => lambda { |params| return Storage::GitStorage.configure(params) }, "google_cloud" => lambda { |params| return Storage::GoogleCloudStorage.configure(params) + }, + "s3" => lambda { |params| + return Storage::S3Storage.configure(params) } } end def register_backend(type: nil, storage_class: nil, &configurator)