Skip to content

Commit

Permalink
require create
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaxjiang96 committed Jul 3, 2023
1 parent 654cf03 commit a404f35
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,17 @@ platform :ios do
end

begin
create_keychain(
name: 'ios-build.keychain',
password: keychain_password,
default_keychain: true,
unlock: true,
timeout: 3600
)
delete_keychain(name: 'ios-build.keychain')
rescue => ex
UI.error(ex)
ensure
delete_keychain(name: 'ios-build.keychain')
end
create_keychain(
name: 'ios-build.keychain',
password: keychain_password,
default_keychain: true,
unlock: true,
timeout: 3600
)

if @is_split_cer
import_certificate(
Expand Down

0 comments on commit a404f35

Please sign in to comment.