ETLane 0.1.62 → 0.1.63
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Lanes/CommonFastfile +7 -7
- 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: 7e278fb7812c0c4aa7bea9bc171014f4b98d5f30df3cc48f46c7baa9e44eb0ea
|
4
|
+
data.tar.gz: f11db91efb3b7bcab76dd96ac5d993abd460198d7fca06f545355b03108d183a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37be473a34e3d4d8c6c2a8c63eeee5d2ac2f6808d385e64c1ce7ea24c8bf31e47befd98dd65b8b81a0c2283ea21a1020a04966e05112a3d15db4d8a85dae49ca
|
7
|
+
data.tar.gz: 47c4f73a91bce897e60a8844bff22eb7882f32ac07d4194bf7350be4978f2f4bd8f4cb91d9cfeae8470ab378975010980e0dc8d1e008b532f4b9507260a35a74
|
data/Lanes/CommonFastfile
CHANGED
@@ -18,6 +18,13 @@ platform :ios do
|
|
18
18
|
provisioning_profile = "AppStore_#{product_bundle_identifier}"
|
19
19
|
username = options[:username]
|
20
20
|
|
21
|
+
if ENV["ET_USE_PROJECT"] == "true"
|
22
|
+
ENV["GYM_PROJECT"] = "#{project_name}.xcodeproj"
|
23
|
+
else
|
24
|
+
ENV["GYM_WORKSPACE"] = "#{project_name}.xcworkspace"
|
25
|
+
end
|
26
|
+
cocoapods
|
27
|
+
|
21
28
|
get_certificates(output_path: build_folder, username: username)
|
22
29
|
profile_uuid = get_provisioning_profile(output_path: build_folder, username: username, app_identifier: product_bundle_identifier)
|
23
30
|
provisioningProfiles = Hash.new
|
@@ -38,13 +45,6 @@ platform :ios do
|
|
38
45
|
increment_and_push()
|
39
46
|
|
40
47
|
team_id = CredentialsManager::AppfileConfig.try_fetch_value(:team_id)
|
41
|
-
|
42
|
-
if ENV["ET_USE_PROJECT"] == "true"
|
43
|
-
ENV["GYM_PROJECT"] = "#{project_name}.xcodeproj"
|
44
|
-
else
|
45
|
-
ENV["GYM_WORKSPACE"] = "#{project_name}.xcworkspace"
|
46
|
-
end
|
47
|
-
cocoapods
|
48
48
|
build_app(
|
49
49
|
export_xcargs: "PROVISIONING_PROFILE_SPECIFIER='#{provisioning_profile}' DEVELOPMENT_TEAM='#{team_id}' CODE_SIGN_STYLE='Manual'",
|
50
50
|
scheme: project_name,
|