fastlane-plugin-gs_project_flow_ios 0.4.12 → 0.4.13

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
  SHA1:
3
- metadata.gz: a3b010481043c32e0e5be0a7fcdf7e8cc9491544
4
- data.tar.gz: 9c11dddcdae437e1f188da8b3d4c21628c025336
3
+ metadata.gz: 467a85c44bc1cf735526763e19222b1a8490f92e
4
+ data.tar.gz: 1d4794cf35aa9e41d61b331a2eed2f0ec43e32a7
5
5
  SHA512:
6
- metadata.gz: 2478801cca54f688480744c536332cb66511a143c923a23ff45646637aab4a3089a3a1599eefb0c20ece3ffa3b22477c2754eae79c00c7a5114f26ede8df44b3
7
- data.tar.gz: 8656cd21dd9af467d9720adc3cc1be7915736c696614aabce6e4ac57fbae5aa4deb831d0f7117f47c1dff0733786be67042d28acd7c1c69c8a953ec60199e9b3
6
+ metadata.gz: 5172a74073fcfeaec5a22ffbc33720f39bc72f4d09b3ec0d1887e2572207fe94af211df0c615434086d90350e155261037e8de968a83653b36719ea626f43d83
7
+ data.tar.gz: a4c3d77a2cdfa3d86fa46de435487818641174cf4a7e42e0461e7bf0f6d30a469cded2e1bd3dfc394d5249de179fa9a4c71e704128d592fee25848b096ad2119
@@ -4,7 +4,7 @@ module Fastlane
4
4
  def self.run(params)
5
5
  require 'fastlane/plugin/gs_versioning'
6
6
  require 'fastlane/plugin/versioning'
7
- ENV['RC_DID_FAILED'] = true
7
+ ENV['RC_DID_FAILED'] = 'true'
8
8
 
9
9
  fastlaneHelper = Fastlane::Helper::GsProjectFlowIosHelper.new
10
10
  arg = FastlaneCore::Configuration.create(GsIncrementRcVersionAction.available_options, {path:Helper::GsProjectFlowIosHelper.get_versions_path})
@@ -56,7 +56,7 @@ module Fastlane
56
56
  UI.success("App is released to internal testing")
57
57
 
58
58
  Actions::GsSaveRcVersionAction.run(FastlaneCore::Configuration.create(GsSaveRcVersionAction.available_options,{version: v, path:Helper::GsProjectFlowIosHelper.get_versions_path}))
59
- ENV['RC_DID_FAILED'] = false
59
+ ENV['RC_DID_FAILED'] = 'false'
60
60
 
61
61
  Actions::GsExecuteRcLaneAction.moveToReview(version_name)
62
62
  UI.success("✅ App status is changed to Waiting For Review")
@@ -76,7 +76,7 @@ module Fastlane
76
76
  version_name = v.major.to_s+ "." + v.minor.to_s + "." + v.build.to_s
77
77
  elsif lane == :rc
78
78
  if buildState == BuildState::FAILURE
79
- if ENV['RC_DID_FAILED'] #Если произошла ошибка после отправки в стор
79
+ if ENV['RC_DID_FAILED'] #Если произошла ошибка до успешной отправки в стор
80
80
  v = Actions::GsIncrementRcVersionAction.run(FastlaneCore::Configuration.create(Actions::GsIncrementBetaVersionAction.available_options,{path: GsProjectFlowIosHelper.get_versions_path}))
81
81
  else
82
82
  v = Actions::GsGetRcVersionAction.run(FastlaneCore::Configuration.create(Actions::GsGetBetaVersionAction.available_options,{path: GsProjectFlowIosHelper.get_versions_path}))
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GsProjectFlowIos
3
- VERSION = "0.4.12"
3
+ VERSION = "0.4.13"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-gs_project_flow_ios
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.12
4
+ version: 0.4.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Сергей Веселовский