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,14 +58,15 @@ module Fastlane
# Parse credential file
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
file = File.read("#{ios_directory}/ios_crendentials.json")
JSON.parse(file)
else
else
UI.error("❌ Ios credentials doesn't exist")
puts("json file doesn't exist")
end
end
end
end