fastlane-plugin-teak 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 542a49470c11daa9a937247622b63e2442c2e6ddefa3927555450c8af45d9d52
|
|
4
|
+
data.tar.gz: 788068337a363fdf26a1e456191ed156613b1a971df48f4c6036f43ccb423226
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9272bbcc9022316bd3dd5f5cecb3be6cdcd78f5e1801cf1a90bcf37322f0d365a68caa61586ff352ad517d2c678de1c24aad24269eceb5bd1574fc3f8680bc0d
|
|
7
|
+
data.tar.gz: e4589d98b455352183fe8fa7b48d2d84f1e8f15476212ded079cfdc48044007df3bf7d1753ec971c27c8fb5839db7d5e930b4e4387269ac141b2fd3975e19c6b
|
|
@@ -30,11 +30,12 @@ module Fastlane
|
|
|
30
30
|
)
|
|
31
31
|
|
|
32
32
|
# Download the certificates
|
|
33
|
-
|
|
33
|
+
opts = {
|
|
34
34
|
app_identifier: app_id,
|
|
35
35
|
type: type,
|
|
36
36
|
keychain_name: keychain_name
|
|
37
|
-
}.merge(match_options)
|
|
37
|
+
}.merge(match_options)
|
|
38
|
+
params = FastlaneCore::Configuration.create(Match::Options.available_options, opts)
|
|
38
39
|
Actions::MatchAction.run(params)
|
|
39
40
|
|
|
40
41
|
# Get the location of the provisioning profile
|
|
@@ -47,7 +48,7 @@ module Fastlane
|
|
|
47
48
|
Dir.mktmpdir do |tmpdir|
|
|
48
49
|
p12_password = SecureRandom.hex
|
|
49
50
|
p12_file = File.join(tmpdir, "temp.p12")
|
|
50
|
-
Actions.sh("security", "export", "-k", keychain_name, "-t", "identities",
|
|
51
|
+
Actions.sh("security", "export", "-k", opts[:keychain_name], "-t", "identities",
|
|
51
52
|
"-f", "pkcs12", "-P", p12_password, "-o", p12_file, log: false)
|
|
52
53
|
|
|
53
54
|
# Call block
|