ETLane 0.1.58 → 0.1.61

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63cd62a1f4b8d6d6bcbc20d49484d46d0abb0bbf230d9b6ec623d11ae4bac47a
4
- data.tar.gz: bcf1ccf8a8d5b2efcfbea4dc032c85442bc70155ebb3a3370d121ae15fbb4d60
3
+ metadata.gz: 8008c2fc2cedd443375f9dd7aeb9309b1b2412d512ab2765a6e2c86498a6613b
4
+ data.tar.gz: 60cd551f12fe5d47c95f0719904bbd63589825df27c7b8ca5b935248ab44ecc1
5
5
  SHA512:
6
- metadata.gz: 13706bbbe344bd16a1b4eb259385afc61d4e24c6aedb12214d28d79418d921d8af87af18e6e5501b191630d64a13e2ca11c3e7f8407a22bf8b14b15ed0e2937e
7
- data.tar.gz: cf4c12f67cb01752df7aa5c4c08b1db9856b996cc876ccae723e253112f1ac6f056af45f00b91035d3e6448f63f73d73786f228405a8c91b74af70be3c7df5e4
6
+ metadata.gz: e21f65faa577fb9727137196b8345efcad7c79551663ebb6da60e0895d39062e45a81b18ff52dbe1e6e9f8cc63693c798ac1690072861ae6d07456fb20f17111
7
+ data.tar.gz: d15941e586acbebc1605764842ccb591f5c4ed1b010e1806f857e43d26105fc77f585162b59e62983456456a7a4843079c0efd1c1b6bc47db1286af2435a2f75
data/Lanes/CommonFastfile CHANGED
@@ -38,8 +38,14 @@ platform :ios do
38
38
  increment_and_push()
39
39
 
40
40
  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
+
41
48
  build_app(
42
- workspace: "#{project_name}.xcworkspace",
43
49
  export_xcargs: "PROVISIONING_PROFILE_SPECIFIER='#{provisioning_profile}' DEVELOPMENT_TEAM='#{team_id}' CODE_SIGN_STYLE='Manual'",
44
50
  scheme: project_name,
45
51
  output_directory: build_folder,
@@ -68,6 +74,10 @@ platform :ios do
68
74
  beta_app_review_info = eval(ENV["ET_BETA_APP_REVIEW_INFO"])
69
75
  end
70
76
 
77
+ if ENV["GOOGLE_SERVICES_INFO_PLIST_PATH"]
78
+ upload_symbols_to_crashlytics()
79
+ end
80
+
71
81
  exception = nil
72
82
  begin
73
83
  app_store_connect_api_key(
@@ -34,6 +34,8 @@ module Fastlane
34
34
  request['Content-Type'] = 'application/json'
35
35
  http = Net::HTTP.new(uri.host, uri.port)
36
36
  http.use_ssl = true
37
+ http.open_timeout = 300
38
+ http.read_timeout = 300
37
39
  response = http.request(request)
38
40
 
39
41
  jsonResponse = JSON.parse(response.body)
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.58
4
+ version: 0.1.61
5
5
  platform: ruby
6
6
  authors:
7
7
  - teanet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-19 00:00:00.000000000 Z
11
+ date: 2022-05-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'Xcode helper for upload builds and metadata
14
14