Method: Fastlane::Actions::EnvironmentVariableAction.available_options

Defined in:
fastlane/lib/fastlane/actions/environment_variable.rb

.available_optionsObject


30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'fastlane/lib/fastlane/actions/environment_variable.rb', line 30

def self.available_options
  [
    FastlaneCore::ConfigItem.new(
      key: :set,
      env_name: 'FL_ENVIRONMENT_VARIABLE_SET',
      description: 'Set the environment variables named',
      optional: true,
      type: Hash
    ),
    FastlaneCore::ConfigItem.new(
      key: :get,
      env_name: 'FL_ENVIRONMENT_VARIABLE_GET',
      description: 'Get the environment variable named',
      optional: true,
      is_string: true
    ),
    FastlaneCore::ConfigItem.new(
      key: :remove,
      env_name: 'FL_ENVIRONMENT_VARIABLE_REMOVE',
      description: 'Remove the environment variable named',
      optional: true,
      is_string: true
    )
  ]
end