Skip to content

Commit

Permalink
[action][increment_build_number] remove all instances of is_string
Browse files Browse the repository at this point in the history
…in options and use `type` (#18912)
  • Loading branch information
crazymanish committed Jun 23, 2021
1 parent 7e53520 commit 6a17379
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fastlane/lib/fastlane/actions/increment_build_number.rb
Expand Up @@ -66,11 +66,10 @@ def self.available_options
env_name: "FL_BUILD_NUMBER_BUILD_NUMBER",
description: "Change to a specific version. When you provide this parameter, Apple Generic Versioning does not have to be enabled",
optional: true,
is_string: false),
skip_type_validation: true), # allow Integer, String
FastlaneCore::ConfigItem.new(key: :skip_info_plist,
env_name: "FL_BUILD_NUMBER_SKIP_INFO_PLIST",
description: "Don't update Info.plist files when updating the build version",
is_string: false,
type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :xcodeproj,
Expand Down

0 comments on commit 6a17379

Please sign in to comment.