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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 467a85c44bc1cf735526763e19222b1a8490f92e
|
|
4
|
+
data.tar.gz: 1d4794cf35aa9e41d61b331a2eed2f0ec43e32a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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}))
|