fastlane-plugin-stream_actions 0.1.18 → 0.1.20

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: e8aedf213b38a187944b2dce1a10bf6e01a16c1d1a41c2a5ff1aeac786001efb
4
- data.tar.gz: 39abbf45af37a5c33a4fba0d25f41b66c7416dde5e30290cb614f1c03f2dcc9e
3
+ metadata.gz: 21c9b1b5d590a8e3b41c1508a4051a19d2f89eb8f674d14c4edac519ba9c17e2
4
+ data.tar.gz: 75fd43b5ee80a9b694015e0d2fcd0b36dd34f72b544afcb1ceabbe64d861f62d
5
5
  SHA512:
6
- metadata.gz: b189951490a9e95b4534460c6fbbb408472394c8db19ce98b2892ba08b1562ad71b6a3e3a7b03bddfd6ba208855b457afa0b210a0d3136d593c651ef192c6e2d
7
- data.tar.gz: 5229f877e3b325785025148182500bada877d9bc46e4c3f0a7612264699438649bc07950c90223e82185efb0758153d1e15457e316dbacc42a27cc3fd90ba6aa
6
+ metadata.gz: f28b7f0465716bd78fab3bd4c9b0779c22aeb89970726fa938322042f423bfbdfda23d64c41cb02105bfbbb8e6b08e433c2a83852dc447e40f9317ede4794159
7
+ data.tar.gz: e821f54636c5eed82ce77294ef494aa8f1ae02a7f0f111cd67ec93b786c7d4b64d1610d124240299e5d8782f1bf22b658b4a391916343367e33ab459c8c0df9b
@@ -2,7 +2,7 @@ module Fastlane
2
2
  module Actions
3
3
  class IsCheckRequiredAction < Action
4
4
  def self.run(params)
5
- return true if params[:github_pr_num].nil? || params[:github_pr_num].empty?
5
+ return true if params[:github_pr_num].nil? || params[:github_pr_num].strip.empty?
6
6
 
7
7
  UI.message("Checking if check is required for PR ##{params[:github_pr_num]}")
8
8
 
@@ -6,7 +6,7 @@ module Fastlane
6
6
  app_identifier: params[:app_identifier],
7
7
  api_key: params[:api_key]
8
8
  ) + 1
9
- other_action.increment_build_number(build_number: build_number.to_s)
9
+ other_action.increment_build_number_in_plist(build_number: build_number.to_s, target: params[:app_target])
10
10
 
11
11
  other_action.gym(
12
12
  project: params[:xcode_project],
@@ -34,7 +34,7 @@ module Fastlane
34
34
  changelog: testflight_instructions(params)
35
35
  )
36
36
 
37
- if params[:github_pr_num]
37
+ if params[:github_pr_num] && !params[:github_pr_num].strip.empty?
38
38
  message = "Build for regression testing №#{build_number} has been uploaded to TestFlight 🎁"
39
39
  sh("gh pr comment #{params[:github_pr_num]} -b '#{message}'")
40
40
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = "0.1.18"
3
+ VERSION = "0.1.20"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2022-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler