lib/pilot/options.rb in pilot-1.7.0 vs lib/pilot/options.rb in pilot-1.8.0

- old
+ new

@@ -106,11 +106,19 @@ description: "The name of your team if you're in multiple teams", optional: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name), verify_block: proc do |value| ENV["FASTLANE_ITC_TEAM_NAME"] = value + end), + FastlaneCore::ConfigItem.new(key: :dev_portal_team_id, + env_name: "PILOT_DEV_PORTAL_TEAM_ID", + description: "The short ID of your team in the developer portal, if you're in multiple teams. Different from your iTC team ID!", + optional: true, + is_string: true, + default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id), + verify_block: proc do |value| + ENV["FASTLANE_TEAM_ID"] = value.to_s end) - ] end end end