deliver/lib/deliver/options.rb in fastlane-2.161.0 vs deliver/lib/deliver/options.rb in fastlane-2.162.0

- old
+ new

@@ -14,20 +14,20 @@ [ FastlaneCore::ConfigItem.new(key: :api_key_path, env_name: "DELIVER_API_KEY_PATH", description: "Path to your App Store Connect API Key JSON file (https://docs.fastlane.tools/app-store-connect-api/#using-fastlane-api-key-json-file)", optional: true, - conflicting_options: [:username], + conflicting_options: [:api_key], verify_block: proc do |value| UI.user_error!("Couldn't find API key JSON file at path '#{value}'") unless File.exist?(value) end), FastlaneCore::ConfigItem.new(key: :api_key, env_name: "DELIVER_API_KEY", description: "Your App Store Connect API Key information (https://docs.fastlane.tools/app-store-connect-api/#use-return-value-and-pass-in-as-an-option)", type: Hash, optional: true, sensitive: true, - conflicting_options: [:api_key_path, :username]), + conflicting_options: [:api_key_path]), FastlaneCore::ConfigItem.new(key: :username, short_option: "-u", env_name: "DELIVER_USERNAME", description: "Your Apple ID Username",