Skip to content

Commit e066489

Browse files
boring-kmclaude
andcommitted
fix: 임시 키체인을 기본 키체인으로 설정 + readonly 복원
- default_keychain: true 추가 (export 시 인증서 검색 보장) - readonly: true 복원 (Apple Portal 접근 불필요) - verbose: true 유지 (디버깅용) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ac72a7c commit e066489

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ios/fastlane/Fastfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def create_temp_keychain(name, password)
1414
create_keychain(
1515
name: name,
1616
password: password,
17+
default_keychain: true,
1718
unlock: true,
1819
timeout: 0,
1920
lock_when_sleeps: false
@@ -32,6 +33,7 @@ platform :ios do
3233
type: 'appstore',
3334
app_identifier: ["#{BUNDLE_IDENTIFIER}", "#{EXTENSION_IDENTIFIER}"],
3435
git_basic_authorization: Base64.strict_encode64(ENV["GIT_AUTHORIZATION"]),
36+
readonly: true,
3537
keychain_name: keychain_name,
3638
keychain_password: keychain_password,
3739
verbose: true

0 commit comments

Comments
 (0)