feat/add-android-pipeline #4

Merged
hugo merged 9 commits from feat/add-android-pipeline into main 2023-04-25 11:54:21 +00:00
2 changed files with 8 additions and 6 deletions
Showing only changes of commit d4896b44f7 - Show all commits

View File

@ -1,11 +1,7 @@
require 'fastlane/action'
require_relative '../helper/android_cd_helper'
def is_set variable
str_variable = variable
str_variable = variable.strip if variable.class.to_s == "String"
variable && !(str_variable.nil? || str_variable.empty?)
end
module Fastlane
module Actions
@ -13,7 +9,7 @@ module Fastlane
def self.run(params)
# Check parameters
unless is_set(params[:beta_type])
unless Helper::AndroidCdHelper.is_set(params[:beta_type])
UI.error("Parameters beta_type cannot be null")
puts "Error on beta type parameter"
end

View File

@ -21,6 +21,12 @@ module Fastlane
puts "Erreur lors de la décompression du fichier GPG"
end
end
def self.is_set variable
str_variable = variable
str_variable = variable.strip if variable.class.to_s == "String"
variable && !(str_variable.nil? || str_variable.empty?)
end
end
end
end