ETLane 0.1.55 → 0.1.58

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3edfb531ae0b598b1dd2115acf42a80a8efdd00751774e24948e0c3b18723ec9
4
- data.tar.gz: fbcccfd5feb57812422e2bdcda1bc870334a198ba4a8df026ceaf44b3a5d6ff7
3
+ metadata.gz: 63cd62a1f4b8d6d6bcbc20d49484d46d0abb0bbf230d9b6ec623d11ae4bac47a
4
+ data.tar.gz: bcf1ccf8a8d5b2efcfbea4dc032c85442bc70155ebb3a3370d121ae15fbb4d60
5
5
  SHA512:
6
- metadata.gz: f72cf9389d17066b9d80fd242be7a143570d0eb18eb246c16f850df0afe7599aeee5f987cc63cf2023385bbb31b3b386ecc08517c8d1e4225ee35d75ae822aa2
7
- data.tar.gz: ad8862595ac9bfb6d1c832aa9abf0b9ef7fafcdfa4d4144cd25b044839621b7a405afaa1b6c3ed972fd392f0ebb48df01fdc18bdc98b0ac90a5f291c91cf6560
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
- increment_build_number
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
- commit_bump(message: "Bump up version")
218
- if options[:push]
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.55
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-12 00:00:00.000000000 Z
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'