Class: Fastlane::Actions::BuildAndUploadToAppetizeAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::BuildAndUploadToAppetizeAction
- Defined in:
- fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb
Constant Summary
Constants inherited from Fastlane::Action
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .example_code ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .output ⇒ Object
- .return_value ⇒ Object
Class Method Summary collapse
Methods inherited from Fastlane::Action
action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
90 91 92 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 90 def self. ["KrauseFx"] end |
.available_options ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 49 def self. [ FastlaneCore::ConfigItem.new(key: :xcodebuild, description: "Parameters that are passed to the xcodebuild action", type: Hash, default_value: {}, short_option: '-x', optional: true), FastlaneCore::ConfigItem.new(key: :scheme, description: "The scheme to build. Can also be passed using the `xcodebuild` parameter", type: String, short_option: '-s', optional: true), FastlaneCore::ConfigItem.new(key: :api_token, env_name: "APPETIZE_API_TOKEN", description: "Appetize.io API Token", sensitive: true, is_string: true), FastlaneCore::ConfigItem.new(key: :public_key, description: "If not provided, a new app will be created. If provided, the existing build will be overwritten", is_string: true, optional: true, verify_block: proc do |value| if value.start_with?("private_") UI.user_error!("You provided a private key to appetize, please provide the public key") end end), FastlaneCore::ConfigItem.new(key: :note, description: "Notes you wish to add to the uploaded app", is_string: true, optional: true) ] end |
.category ⇒ Object
102 103 104 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 102 def self.category :misc end |
.description ⇒ Object
38 39 40 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 38 def self.description "Generate and upload an ipa file to appetize.io" end |
.details ⇒ Object
42 43 44 45 46 47 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 42 def self.details [ "This should be called from danger.", "More information in the [device_grid guide](https://github.com/fastlane/fastlane/blob/master/fastlane/lib/fastlane/actions/device_grid/README.md)." ].join("\n") end |
.example_code ⇒ Object
98 99 100 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 98 def self.example_code nil end |
.is_supported?(platform) ⇒ Boolean
94 95 96 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 94 def self.is_supported?(platform) platform == :ios end |
.output ⇒ Object
83 84 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 83 def self.output end |
.return_value ⇒ Object
86 87 88 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 86 def self.return_value "" end |
.run(params) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb', line 4 def self.run(params) tmp_path = "/tmp/fastlane_build" xcodebuild_configs = params[:xcodebuild] xcodebuild_configs[:sdk] = "iphonesimulator" xcodebuild_configs[:derivedDataPath] = tmp_path xcodebuild_configs[:xcargs] = "CONFIGURATION_BUILD_DIR=" + tmp_path xcodebuild_configs[:scheme] ||= params[:scheme] if params[:scheme].to_s.length > 0 Actions::XcodebuildAction.run(xcodebuild_configs) app_path = Dir[File.join(tmp_path, "**", "*.app")].last UI.user_error!("Couldn't find app") unless app_path zipped_bundle = Actions::ZipAction.run(path: app_path, output_path: File.join(tmp_path, "Result.zip")) other_action.appetize(path: zipped_bundle, api_token: params[:api_token], public_key: params[:public_key], note: params[:note]) public_key = Actions.lane_context[SharedValues::APPETIZE_PUBLIC_KEY] UI.success("Generated Public Key: #{Actions.lane_context[SharedValues::APPETIZE_PUBLIC_KEY]}") FileUtils.rm_rf(tmp_path) return public_key end |