fastlane-plugin-teak 0.1.4 → 0.1.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
  SHA1:
3
- metadata.gz: e7e2234603c109aa4773c720bff934be0b289336
4
- data.tar.gz: bc61e04cd5a444e93d0b3b400ae68f161a3d111d
3
+ metadata.gz: a0948cae74dc5632816891252ff7f1ffdf6ef9f0
4
+ data.tar.gz: 84f27522e110a6d5e3057bf38256427a95ae30ca
5
5
  SHA512:
6
- metadata.gz: 55cee14bc57c16f2c48f0911ab02236d7e0fbaa9305838ea8b19012ff15d48ed26a63823dea2c6b2093f3b9b2d5bb83ff7ab0afebbad3a408eafbfe3b2310b16
7
- data.tar.gz: a6228604de100e3b6923bc813245a3cb09cccb6923f48f60569f08013778cf5f62bc7dc7d44a30d5ae3504144a90ab6a88bd1cdfb50297836c259f8666a9a6e4
6
+ metadata.gz: 2826721ad1fc4e01fe97eacb0ca550680f34d189ded32f002c9e5430bdbee7ed7406a15c2d1ff0fd2eb66d176166fee8f18e719a0e26a0da2c0d7bade75988c1
7
+ data.tar.gz: ac45b7bd0647984982417823abbcdd3f386dcaa7e8c773026fa8a17523fcd4178a92b0d4d68a297fc787a7d0a9028262ecac41906d50360350bb4fae8dfcfd47
@@ -18,15 +18,15 @@ module Fastlane
18
18
  # Execute a block that will be provided with a path to a p12, a provisioning profile, and a passphrase
19
19
  def self.with_credentials_for(app_id, type: 'development')
20
20
  keychain_name = SecureRandom.hex
21
+ keychain_pass = SecureRandom.hex
21
22
 
22
23
  # Create temporary keychain
23
24
  Actions::CreateKeychainAction.run(
24
25
  name: keychain_name,
25
26
  default_keychain: false,
26
27
  unlock: true,
27
- timeout: 10,
28
28
  lock_when_sleeps: true,
29
- password: SecureRandom.hex
29
+ password: keychain_pass
30
30
  )
31
31
 
32
32
  # Download the certificates
@@ -54,7 +54,7 @@ module Fastlane
54
54
  "-f", "pkcs12", "-P", p12_password, "-o", p12_file, log: false)
55
55
 
56
56
  # Call block
57
- yield(p12_file, p12_password, ENV[provisioning_profile_path_env], keychain_name)
57
+ yield(p12_file, p12_password, ENV[provisioning_profile_path_env], keychain_name, keychain_pass)
58
58
  end
59
59
  ensure
60
60
  # Cleanup temporary keychain
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Teak
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-teak
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pat Wilson