ETLane 0.1.66 → 0.1.67
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 +4 -4
- data/Lanes/CommonFastfile +8 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c66d69b1b5d5a828d71d786d7b9f20f9bb14553b5abd009157a4bd131b59c47
|
|
4
|
+
data.tar.gz: 0d857629f6f0b399c5f8e92882259128fed646c58eb5056ede849002cc9b4756
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b212baa260b69e9df77c344ab1541da8fa42b1431efaab7570f8c2a3ae78917668cba996ff329807a70b24f642290623b88c126f1f96efc9891e15befe71c10d
|
|
7
|
+
data.tar.gz: 251c620e8997c858dfad63332166cf72d88af96ed466f277ce6bfda8093dabe0e21579d3c5140f0da9d8c2a760e3bbb7fdcb3f2ae1f2f5c7b48a6ef4b417a03c
|
data/Lanes/CommonFastfile
CHANGED
|
@@ -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
|
|