fastlane-plugin-gs_project_flow_ios 0.4.15 → 0.4.16
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: 79e8d2aa81ba2f9785c34776f856d0febb03f6dc
|
|
4
|
+
data.tar.gz: 9aa7c1390f210518430bab1a52ea6c5e41d26704
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 859dc69ef8923e9f1625a09e94dd30430aac03524f0f8b12117c34485480381af3c8bf26e965c54d7e851cfcf68f17ec9460af4131388f0eeed856662e7f2755
|
|
7
|
+
data.tar.gz: bceba8b6dfecbb7302907293b2037c4244180176eee1ffa8cee736aa2ad0b990f6688977cf412101bd54e04163e734e16ed9b4c6c12bff13a46440b6a72a5af7
|
|
@@ -58,54 +58,6 @@ module Fastlane
|
|
|
58
58
|
raise "App has got unexpected status. Expected statuses: waitingForReview or PendingDeveloperRelease. Current status: "+s
|
|
59
59
|
end
|
|
60
60
|
Actions::GsSaveReleaseVersionAction.run(FastlaneCore::Configuration.create(GsSaveReleaseVersionAction.available_options,{version:v, path:Helper::GsProjectFlowIosHelper.get_versions_path}))
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
s = gs_get_app_status(app_identifier:ENV["BUNDLE_ID"])
|
|
64
|
-
UI.success("App Status = " + s)
|
|
65
|
-
version_name = v.major.to_s + "." + v.minor.to_s
|
|
66
|
-
|
|
67
|
-
generateReleaseNotes("fileClosed", ENV["ALIAS"], version_name, "Ru")
|
|
68
|
-
generateReleaseNotes("fileClosed", ENV["ALIAS"], version_name, "En")
|
|
69
|
-
ruText = FileHelper.read(Dir.pwd + "/../../../notes/" + ENV["ALIAS"] + "/" + version_name + "_Ru.txt")
|
|
70
|
-
enText = FileHelper.read(Dir.pwd + "/../../../notes/" + ENV["ALIAS"] + "/" + version_name + "_En.txt")
|
|
71
|
-
FileHelper.write(Dir.pwd+'/metadata/ru/release_notes.txt', ruText)
|
|
72
|
-
FileHelper.write(Dir.pwd+'/metadata/en-US/release_notes.txt', enText)
|
|
73
|
-
if s == "Waiting For Review"
|
|
74
|
-
deliver(#submit_for_review: true,
|
|
75
|
-
force:true,
|
|
76
|
-
app_version: version_name,
|
|
77
|
-
skip_binary_upload:true,
|
|
78
|
-
skip_screenshots: true,
|
|
79
|
-
#skip_metadata: true,
|
|
80
|
-
automatic_release:true,
|
|
81
|
-
submission_information: {
|
|
82
|
-
add_id_info_limits_tracking: false,
|
|
83
|
-
add_id_info_serves_ads: false,
|
|
84
|
-
add_id_info_tracks_action: false,
|
|
85
|
-
add_id_info_tracks_install: false,
|
|
86
|
-
add_id_info_uses_idfa: false,
|
|
87
|
-
content_rights_has_rights: true,
|
|
88
|
-
content_rights_contains_third_party_content: false,
|
|
89
|
-
export_compliance_platform: 'ios',
|
|
90
|
-
export_compliance_compliance_required: false,
|
|
91
|
-
export_compliance_encryption_updated: false,
|
|
92
|
-
export_compliance_app_type: nil,
|
|
93
|
-
export_compliance_uses_encryption: false,
|
|
94
|
-
export_compliance_is_exempt: false,
|
|
95
|
-
export_compliance_contains_third_party_cryptography: false,
|
|
96
|
-
export_compliance_contains_proprietary_cryptography: false,
|
|
97
|
-
export_compliance_available_on_french_store: false
|
|
98
|
-
})
|
|
99
|
-
UI.success("✅ Automatic release is set. App will be released in store after AppReview")
|
|
100
|
-
elsif s == "Pending Developer Release"
|
|
101
|
-
gs_move_to_ready_for_sale(app_identifier:ENV["BUNDLE_ID"])
|
|
102
|
-
UI.success("✅ App is released to store")
|
|
103
|
-
else
|
|
104
|
-
raise "App has got unexpected status. Expected statuses: waitingForReview or PendingDeveloperRelease. Current status: "+s
|
|
105
|
-
return
|
|
106
|
-
end
|
|
107
|
-
gs_save_release_version(path: ENV["path_to_versions"], version: v)
|
|
108
|
-
|
|
109
61
|
end
|
|
110
62
|
|
|
111
63
|
def self.description
|