From 028d8dacc5544f02d49a0785416e323338885490 Mon Sep 17 00:00:00 2001 From: Manish Reddy <47571755+mani-sh-reddy@users.noreply.github.com> Date: Wed, 15 Nov 2023 18:18:12 +0000 Subject: [PATCH] update Build App github action --- fastlane/Fastfile | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b1370eba..195a2eb4 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -78,7 +78,20 @@ lane :ci_lunar_sign do ], # keychain_name: 'login.keychain', # keychain_password: @MATCH_PASSWORD, - git_basic_authorization: @MATCH_GIT_BASIC_AUTHORIZATION + git_basic_authorization: @MATCH_GIT_BASIC_AUTHORIZATION, + keychain_name: 'github_actions_keychain', + keychain_password: 'test' + ) +end + +lane :ci_create_keychain do + create_keychain( + name: 'github_actions_keychain', + password: 'test', + default_keychain: true, + unlock: true, + timeout: 3600, + lock_when_sleeps: false ) end @@ -90,8 +103,7 @@ lane :lunar_build do silent: false, clean: true, build_timing_summary: true, - analyze_build_time: true, - toolchain: "swift-5.9-RELEASE" + analyze_build_time: true ) end @@ -106,6 +118,7 @@ end lane :CI_TO_TESTFLIGHT_DEPLOY do increment_versions + ci_create_keychain ci_lunar_sign lunar_build end