fastlane/lib/fastlane/actions/update_project_provisioning.rb in fastlane-2.187.0 vs fastlane/lib/fastlane/actions/update_project_provisioning.rb in fastlane-2.188.0
- old
+ new
@@ -115,11 +115,11 @@
end),
FastlaneCore::ConfigItem.new(key: :target_filter,
env_name: "FL_PROJECT_PROVISIONING_PROFILE_TARGET_FILTER",
description: "A filter for the target name. Use a standard regex",
optional: true,
- is_string: false,
+ skip_type_validation: true, # allow Regexp, String
verify_block: proc do |value|
UI.user_error!("target_filter should be Regexp or String") unless [Regexp, String].any? { |type| value.kind_of?(type) }
end),
FastlaneCore::ConfigItem.new(key: :build_configuration_filter,
env_name: "FL_PROJECT_PROVISIONING_PROFILE_FILTER",
@@ -127,10 +127,10 @@
optional: true),
FastlaneCore::ConfigItem.new(key: :build_configuration,
env_name: "FL_PROJECT_PROVISIONING_PROFILE_BUILD_CONFIGURATION",
description: "A filter for the build configuration name. Use a standard regex. Applied to all configurations if not specified",
optional: true,
- is_string: false,
+ skip_type_validation: true, # allow Regexp, String
verify_block: proc do |value|
UI.user_error!("build_configuration should be Regexp or String") unless [Regexp, String].any? { |type| value.kind_of?(type) }
end),
FastlaneCore::ConfigItem.new(key: :certificate,
env_name: "FL_PROJECT_PROVISIONING_CERTIFICATE_PATH",