ETLane 0.1.66 → 0.1.68
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Lanes/CommonFastfile +9 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68cfae08b9933ff0250a6741a2544fe928ab997a0b7cea086556d499c1edfdc4
|
4
|
+
data.tar.gz: 57edf53b608a5c38b713488d6885658b62627cb96b1867186dcb337f2bb143f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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:
|
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
|
-
|
37
|
-
|
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(
|
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.
|
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:
|
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
|
|