ETLane 0.1.66 → 0.1.68

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/Lanes/CommonFastfile +9 -7
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 826f08bd8b28106afba954b9972232a1a2e1bccdf8f6ff3102322e2ebb557c27
4
- data.tar.gz: 32254a0818677cdda81ea642241944b03e44355fbe23ebf3a40da0aac0a166b1
3
+ metadata.gz: 68cfae08b9933ff0250a6741a2544fe928ab997a0b7cea086556d499c1edfdc4
4
+ data.tar.gz: 57edf53b608a5c38b713488d6885658b62627cb96b1867186dcb337f2bb143f2
5
5
  SHA512:
6
- metadata.gz: 22bb345423eaf8cc204619f0f6b7f44da9ec245437179edcecbe87720003bf7a6776d0c32afb1346459db678115d1a36260ea715312cb1e84a9a591c3bb08e40
7
- data.tar.gz: 8123fce6df0f79f46ff06aac615056fb1829348a2f0c15fe37bd95e33a559f85bc75a202c84cc5af96f68e6838b0923756beb962e978c1d083dc48fe47d69bbb
6
+ metadata.gz: 9b65e3b922e6e771fcbf891910cbc7646c7ac10920d2445f4871b20df5edc2df651e478739f6e0df7dbb79defc8c364588e29aeaae803f2f59ffb7af67934aa7
7
+ data.tar.gz: b8cacc294f48a97314395b7a0c5968a5b5563409ad5424d5b238e53e57abfe9d404c9fea14e7d6eedbd78c2af66fb1f3efe3d7214123dee0f02786f5c33f8365
data/Lanes/CommonFastfile CHANGED
@@ -5,7 +5,7 @@ default_platform :ios
5
5
  platform :ios do
6
6
 
7
7
  product_bundle_identifier = CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)
8
- distribute_group_name = ENV["DISTRIBUTE_GROUP_NAME"]
8
+ distribute_group_name = options[:tf_group_name] || ENV["DISTRIBUTE_GROUP_NAME"]
9
9
  project_name = ENV["PROJECT_NAME"]
10
10
 
11
11
  build_folder = File.join(Dir.pwd, "..", "build")
@@ -28,19 +28,21 @@ platform :ios do
28
28
  cocoapods(repo_update: true)
29
29
  end
30
30
 
31
- app_store_connect_api_key(
32
- duration: 1200, # optional (maximum 1200)
31
+ api_key = app_store_connect_api_key(
32
+ duration: 500, # optional (maximum 1200)
33
33
  in_house: false # optional but may be required if using match/sigh
34
34
  )
35
-
36
- get_certificates(output_path: build_folder, username: username)
37
- 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)
38
40
  provisioningProfiles = Hash.new
39
41
  provisioningProfiles[product_bundle_identifier] = profile_uuid
40
42
  extension_bundle_ids = ENV["EXTENSION_BUNDLE_IDS"].split(",")
41
43
  for extension_bundle_id in extension_bundle_ids do
42
44
  extension_bundle_identifier = "#{product_bundle_identifier}.#{extension_bundle_id}"
43
- 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)
44
46
  provisioningProfiles[extension_bundle_identifier] = extension_profile_uuid
45
47
  end
46
48
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ETLane
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.66
4
+ version: 0.1.68
5
5
  platform: ruby
6
6
  authors:
7
7
  - teanet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-28 00:00:00.000000000 Z
11
+ date: 2023-03-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'Xcode helper for upload builds and metadata
14
14