Add iOS pipeline #7

Merged
malo merged 24 commits from feat/add-ios-pipeline into main 2023-05-15 15:01:41 +00:00
Showing only changes of commit 87a5b0f809 - Show all commits

View File

@ -58,7 +58,7 @@ module Fastlane
# Parse credential file # Parse credential file
def parseIosCredentials(ios_directory) def parseIosCredentials(ios_directory)
if File.exists?("#{ios_directory}/ios_crendentials.json") if File.exist?("#{ios_directory}/ios_crendentials.json")
# Read file and decrypt it # Read file and decrypt it
file = File.read("#{ios_directory}/ios_crendentials.json") file = File.read("#{ios_directory}/ios_crendentials.json")
JSON.parse(file) JSON.parse(file)
@ -69,4 +69,5 @@ module Fastlane
end end
end end
end end
end
end end