lib/pilot/options.rb in pilot-0.2.3 vs lib/pilot/options.rb in pilot-0.3.0
- old
+ new
@@ -18,9 +18,14 @@
default_value: Dir["*.ipa"].first,
verify_block: proc do |value|
raise "Could not find ipa file at path '#{value}'" unless File.exist? value
raise "'#{value}' doesn't seem to be an ipa file" unless value.end_with? ".ipa"
end),
+ FastlaneCore::ConfigItem.new(key: :changelog,
+ short_option: "-w",
+ optional: true,
+ env_name: "PILOT_CHANGELOG",
+ description: "Provide the what's new text when uploading a new build"),
FastlaneCore::ConfigItem.new(key: :skip_submission,
short_option: "-s",
env_name: "PILOT_SKIP_SUBMISSION",
description: "Skip the distributing action of pilot and only upload the ipa file",
is_string: false,