Skip to content

Commit

Permalink
update Build App github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mani-sh-reddy committed Nov 15, 2023
1 parent da2347f commit 028d8da
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand All @@ -106,6 +118,7 @@ end

lane :CI_TO_TESTFLIGHT_DEPLOY do
increment_versions
ci_create_keychain
ci_lunar_sign
lunar_build
end
Expand Down

0 comments on commit 028d8da

Please sign in to comment.