Skip to content

Commit dd8e0c2

Browse files
committed
call match in a different spot
1 parent 50c5bbe commit dd8e0c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

fastlane/platforms/ios.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@
4343
authorize_ci_for_keys
4444
ci_keychains
4545

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-
5246
# set the app version
5347
set_version
5448

@@ -92,7 +86,13 @@
9286
create_keychain(name: keychain,
9387
password: password,
9488
timeout: 3600)
89+
90+
# Set up code signing correctly
91+
# (more information: https://codesigning.guide)
92+
match(type: 'appstore', readonly: true)
9593

9694
sh("security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k #{password} #{keychain}")
95+
96+
sh('security find-identity -v -p codesigning')
9797
end
9898
end

0 commit comments

Comments
 (0)