ETLane 0.1.65 → 0.1.67

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/Lanes/CommonFastfile +11 -6
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11ad4b84b5f72fa6c8ed792f66bad33d01d65052a0c5964742ad6efac215d8e2
4
- data.tar.gz: 821a2602ef3f292e9cdd6da15f25856029169c8f50e4826537135b22912a4263
3
+ metadata.gz: 7c66d69b1b5d5a828d71d786d7b9f20f9bb14553b5abd009157a4bd131b59c47
4
+ data.tar.gz: 0d857629f6f0b399c5f8e92882259128fed646c58eb5056ede849002cc9b4756
5
5
  SHA512:
6
- metadata.gz: 656674d45cc3a2423df27a0461311855a2b0433805a3e9300df62fd479ab344a4abadde0f7e40dbb9d2b95d910fd145996901cfc58655de6c15ef2c08e3f18a5
7
- data.tar.gz: 2046f26df8323ff3ec73a90b762cd5f2ac6e38ac386e0394274efcb82f3aea47a367dab4b9cd3c2221bf1ff413e64a2d63d3f73d55529a47fdf7fb2fbdf60a06
6
+ metadata.gz: b212baa260b69e9df77c344ab1541da8fa42b1431efaab7570f8c2a3ae78917668cba996ff329807a70b24f642290623b88c126f1f96efc9891e15befe71c10d
7
+ data.tar.gz: 251c620e8997c858dfad63332166cf72d88af96ed466f277ce6bfda8093dabe0e21579d3c5140f0da9d8c2a760e3bbb7fdcb3f2ae1f2f5c7b48a6ef4b417a03c
data/Lanes/CommonFastfile CHANGED
@@ -22,22 +22,27 @@ platform :ios do
22
22
  ENV["GYM_PROJECT"] = "#{project_name}.xcodeproj"
23
23
  else
24
24
  ENV["GYM_WORKSPACE"] = "#{project_name}.xcworkspace"
25
+ end
26
+
27
+ if ENV["ET_USE_COCOAPODS"] == true
25
28
  cocoapods(repo_update: true)
26
29
  end
27
30
 
28
- app_store_connect_api_key(
29
- duration: 1200, # optional (maximum 1200)
31
+ api_key = app_store_connect_api_key(
32
+ duration: 500, # optional (maximum 1200)
30
33
  in_house: false # optional but may be required if using match/sigh
31
34
  )
32
-
33
- get_certificates(output_path: build_folder, username: username)
34
- profile_uuid = get_provisioning_profile(output_path: build_folder, username: username, app_identifier: product_bundle_identifier)
35
+ ENV["SIGH_OUTPUT_PATH"] = build_folder
36
+ ENV["SIGH_USERNAME"] = username
37
+
38
+ get_certificates(username: username)
39
+ profile_uuid = get_provisioning_profile(app_identifier: product_bundle_identifier)
35
40
  provisioningProfiles = Hash.new
36
41
  provisioningProfiles[product_bundle_identifier] = profile_uuid
37
42
  extension_bundle_ids = ENV["EXTENSION_BUNDLE_IDS"].split(",")
38
43
  for extension_bundle_id in extension_bundle_ids do
39
44
  extension_bundle_identifier = "#{product_bundle_identifier}.#{extension_bundle_id}"
40
- extension_profile_uuid = get_provisioning_profile(output_path: build_folder, username: username, app_identifier: extension_bundle_identifier)
45
+ extension_profile_uuid = get_provisioning_profile(app_identifier: extension_bundle_identifier)
41
46
  provisioningProfiles[extension_bundle_identifier] = extension_profile_uuid
42
47
  end
43
48
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ETLane
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.65
4
+ version: 0.1.67
5
5
  platform: ruby
6
6
  authors:
7
7
  - teanet