class Fastlane::Actions::AddAppVarAction
Public Class Methods
app_key_for(namespace)
click to toggle source
Returns the app key for cryptex. optionally namespaced
# File lib/fastlane/plugin/react_native_release/actions/add_app_var.rb, line 99 def self.app_key_for(namespace) default_app_key = Helper::ReactNativeReleaseHelper::APP_CRYPTEX_KEY return default_app_key if namespace.strip.empty? "#{namespace}_#{default_app_key}" end
available_options()
click to toggle source
# File lib/fastlane/plugin/react_native_release/actions/add_app_var.rb, line 51 def self.available_options [ FastlaneCore::ConfigItem.new(key: :namespace, env_name: "FL_ADD_APP_VAR_NAMESPACE", description: "What namespace should we use? (alpha, beta, release, ENTER = root)", # a short description of this parameter type: String, verify_block: lambda do |value| unless Helper::ReactNativeReleaseHelper::VALID_NAMESPACES.include?(value) UI.user_error!("Invalid namespace #{value}. Valid targets are #{Helper::ReactNativeReleaseHelper::VALID_NAMESPACES.join(', ')}") next end end), FastlaneCore::ConfigItem.new(key: :key, env_name: "FL_ADD_APP_VAR_KEY", description: "Enter the ENV name", type: String), FastlaneCore::ConfigItem.new(key: :value, env_name: "FL_ADD_APP_VAR_VALUE", description: "Enter the ENV value", type: String), FastlaneCore::ConfigItem.new(key: :skip_confirmation, env_name: "FL_ENCRYPT_APP_VARS_SKIP_CONFIRMATION", # The name of the environment variable description: "Allows commands to be run from within CLI and skip the UI.message confirmation dialog", # a short description of this parameter type: Boolean, short_option:'s', default_value: false, optional: true), ] end
description()
click to toggle source
@!group Documentation
# File lib/fastlane/plugin/react_native_release/actions/add_app_var.rb, line 42 def self.description "Adds a single ENV var to the encrypted repository" end
details()
click to toggle source
# File lib/fastlane/plugin/react_native_release/actions/add_app_var.rb, line 46 def self.details # Optional: # this is your chance to provide a more detailed description of this action end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/react_native_release/actions/add_app_var.rb, line 94 def self.is_supported?(platform) [:ios, :android].include?(platform) end
return_value()
click to toggle source
# File lib/fastlane/plugin/react_native_release/actions/add_app_var.rb, line 81 def self.return_value # If your method provides a return value, you can describe here what it does end
run(params)
click to toggle source
# File lib/fastlane/plugin/react_native_release/actions/add_app_var.rb, line 7 def self.run(params) is_ci = ENV['CI'] === 'true' namespace = params[:namespace] key = params[:key] value = params[:value] skip_confirmation= params[:skip_confirmation] cryptex_app_key = app_key_for(namespace) existing_app_vars = {} if !is_ci && !skip_confirmation && !UI.confirm("This will add #{key}=#{value} to the #{cryptex_app_key} namespace in the encrypted context repo. Proceed?") UI.abort_with_message!("Stepping away...") end begin existing_app_vars = other_action.cryptex( type: 'export_env', key: cryptex_app_key, ) rescue => ex # If key doesn't exist cryptex will error end other_action.cryptex( type: "import_env", key: cryptex_app_key, hash: existing_app_vars.merge({ key => value }) ) UI.success('Encrypted app ENV vars') end