Skip to content

Commit 0c7e079

Browse files
committed
Debug keychain
1 parent 7f65cf3 commit 0c7e079

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

demo_app/ios/fastlane/Fastfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,24 @@ platform :ios do
2020
end
2121

2222
lane :patrol_build do
23+
sh('security default-keychain')
24+
2325
setup_ci
26+
sh('security default-keychain')
2427

2528
match(
2629
app_identifier: ["dev.fwfh.demoApp", "dev.fwfh.demoApp.RunnerTests"],
2730
type: 'appstore',
2831
readonly: true
2932
)
33+
sh('security find-identity -v -p codesigning')
3034

3135
match(
3236
app_identifier: ["dev.fwfh.demoApp.RunnerUITests.xctrunner"],
3337
type: 'development',
3438
readonly: true
3539
)
36-
37-
sh('security default-keychain')
40+
sh('security find-identity -v -p codesigning')
3841

3942
sh('cd ../.. && patrol build ios --release --verbose --target integration_test/auto_resize_test.dart')
4043
end

0 commit comments

Comments
 (0)