fastlane/lib/fastlane/actions/deploygate.rb in fastlane-2.82.0.beta.20180217010002 vs fastlane/lib/fastlane/actions/deploygate.rb in fastlane-2.82.0.beta.20180218010003
- old
+ new
@@ -126,17 +126,19 @@
end),
FastlaneCore::ConfigItem.new(key: :ipa,
env_name: "DEPLOYGATE_IPA_PATH",
description: "Path to your IPA file. Optional if you use the _gym_ or _xcodebuild_ action",
default_value: Actions.lane_context[SharedValues::IPA_OUTPUT_PATH],
+ default_value_dynamic: true,
optional: true,
verify_block: proc do |value|
UI.user_error!("Couldn't find ipa file at path '#{value}'") unless File.exist?(value)
end),
FastlaneCore::ConfigItem.new(key: :apk,
env_name: "DEPLOYGATE_APK_PATH",
description: "Path to your APK file",
default_value: Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH],
+ default_value_dynamic: true,
optional: true,
verify_block: proc do |value|
UI.user_error!("Couldn't find apk file at path '#{value}'") unless File.exist?(value)
end),
FastlaneCore::ConfigItem.new(key: :message,