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 50c5bbe commit dd8e0c2Copy full SHA for dd8e0c2
fastlane/platforms/ios.rb
@@ -43,12 +43,6 @@
43
authorize_ci_for_keys
44
ci_keychains
45
46
- # Set up code signing correctly
47
- # (more information: https://codesigning.guide)
48
- match(type: 'appstore', readonly: true)
49
-
50
- sh('security find-identity -v -p codesigning')
51
52
# set the app version
53
set_version
54
@@ -92,7 +86,13 @@
92
86
create_keychain(name: keychain,
93
87
password: password,
94
88
timeout: 3600)
89
+
90
+ # Set up code signing correctly
91
+ # (more information: https://codesigning.guide)
+ match(type: 'appstore', readonly: true)
95
96
sh("security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k #{password} #{keychain}")
+ sh('security find-identity -v -p codesigning')
97
end
98
0 commit comments