ETLane 0.1.55 → 0.1.58
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 +14 -3
- metadata +2 -3
- data/Lanes/Pluginfile +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63cd62a1f4b8d6d6bcbc20d49484d46d0abb0bbf230d9b6ec623d11ae4bac47a
|
|
4
|
+
data.tar.gz: bcf1ccf8a8d5b2efcfbea4dc032c85442bc70155ebb3a3370d121ae15fbb4d60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13706bbbe344bd16a1b4eb259385afc61d4e24c6aedb12214d28d79418d921d8af87af18e6e5501b191630d64a13e2ca11c3e7f8407a22bf8b14b15ed0e2937e
|
|
7
|
+
data.tar.gz: cf4c12f67cb01752df7aa5c4c08b1db9856b996cc876ccae723e253112f1ac6f056af45f00b91035d3e6448f63f73d73786f228405a8c91b74af70be3c7df5e4
|
data/Lanes/CommonFastfile
CHANGED
|
@@ -207,15 +207,26 @@ platform :ios do
|
|
|
207
207
|
end
|
|
208
208
|
|
|
209
209
|
lane :increment_and_push do |options|
|
|
210
|
-
|
|
210
|
+
push = options[:push]
|
|
211
|
+
bump = true
|
|
212
|
+
if get_build_number() == ENV["FL_BUILD_NUMBER_BUILD_NUMBER"]
|
|
213
|
+
bump = false
|
|
214
|
+
push = false
|
|
215
|
+
else
|
|
216
|
+
increment_build_number
|
|
217
|
+
end
|
|
211
218
|
bump_type = options[:bump_type]
|
|
212
219
|
if bump_type
|
|
220
|
+
bump = true
|
|
213
221
|
increment_version_number(
|
|
214
222
|
bump_type: bump_type
|
|
215
223
|
)
|
|
216
224
|
end
|
|
217
|
-
|
|
218
|
-
|
|
225
|
+
if bump
|
|
226
|
+
commit_bump(message: "Bump up version")
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
if push
|
|
219
230
|
push_to_git_remote
|
|
220
231
|
end
|
|
221
232
|
end
|
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.58
|
|
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-
|
|
11
|
+
date: 2022-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: 'Xcode helper for upload builds and metadata
|
|
14
14
|
|
|
@@ -20,7 +20,6 @@ extra_rdoc_files: []
|
|
|
20
20
|
files:
|
|
21
21
|
- Lanes/CommonFastfile
|
|
22
22
|
- Lanes/ExampleAppfile
|
|
23
|
-
- Lanes/Pluginfile
|
|
24
23
|
- Lanes/actions/README.md
|
|
25
24
|
- Lanes/actions/add_keys_to_lokalise.rb
|
|
26
25
|
- Lanes/actions/android/README.md
|
data/Lanes/Pluginfile
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
gem 'fastlane-plugin-telegram'
|