We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f65cf3 commit 0c7e079Copy full SHA for 0c7e079
demo_app/ios/fastlane/Fastfile
@@ -20,21 +20,24 @@ platform :ios do
20
end
21
22
lane :patrol_build do
23
+ sh('security default-keychain')
24
+
25
setup_ci
26
27
28
match(
29
app_identifier: ["dev.fwfh.demoApp", "dev.fwfh.demoApp.RunnerTests"],
30
type: 'appstore',
31
readonly: true
32
)
33
+ sh('security find-identity -v -p codesigning')
34
35
36
app_identifier: ["dev.fwfh.demoApp.RunnerUITests.xctrunner"],
37
type: 'development',
38
39
-
- sh('security default-keychain')
40
41
42
sh('cd ../.. && patrol build ios --release --verbose --target integration_test/auto_resize_test.dart')
43
0 commit comments