fastlane-plugin-emerge 0.10.1 → 0.10.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4130fb5888b6a3bad42355185be1302fa84c2a76fdc659a377151d9bf695d40f
|
|
4
|
+
data.tar.gz: 9402f64c96f47fed1cdb28761a99efd64585528420ded928fff19cd231d57a77
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31e479d302fa2b35d8fca1d4c7c83237409ea84fb84cd073a656b8b9ee54f6daa89d89864c79a4c2dfcf8ff8b89d5bff2c8fa50f782239e193534c7bd68be6e9
|
|
7
|
+
data.tar.gz: 1ab88a61d1ff490d271a6d0a206f108c9f117be4caefbff878fb42d401a8470105ef700855dd00c5f33dd02948092487f392fd7bd610fe42d0302983ccacf9f6
|
|
@@ -31,7 +31,7 @@ module Fastlane
|
|
|
31
31
|
|
|
32
32
|
if file_path.nil? || !File.exist?(file_path)
|
|
33
33
|
UI.error("Invalid input file")
|
|
34
|
-
return
|
|
34
|
+
return false
|
|
35
35
|
end
|
|
36
36
|
extension = File.extname(file_path)
|
|
37
37
|
|
|
@@ -86,7 +86,7 @@ module Fastlane
|
|
|
86
86
|
UI.error("Provided #{extension == '.zip' ? 'zipped archive' : 'ipa'} and linkmaps, linkmaps will not be added to upload.")
|
|
87
87
|
elsif extension != '.zip' && extension != '.ipa'
|
|
88
88
|
UI.error("Invalid input file")
|
|
89
|
-
return
|
|
89
|
+
return false
|
|
90
90
|
end
|
|
91
91
|
|
|
92
92
|
params = {
|
|
@@ -98,10 +98,12 @@ module Fastlane
|
|
|
98
98
|
gitlabProjectId: gitlab_project_id,
|
|
99
99
|
orderFileVersion: order_file_version,
|
|
100
100
|
appIdSuffix: params[:app_id_suffix],
|
|
101
|
+
releaseNotes: params[:release_notes],
|
|
101
102
|
tag: tag || "default"
|
|
102
103
|
}
|
|
103
104
|
upload_id = Helper::EmergeHelper.perform_upload(api_token, params, file_path)
|
|
104
105
|
UI.success("🎉 Your app is processing, you can find the results at https://emergetools.com/build/#{upload_id}")
|
|
106
|
+
upload_id
|
|
105
107
|
end
|
|
106
108
|
|
|
107
109
|
def self.copy_dsyms(from, to)
|
|
@@ -192,6 +194,10 @@ module Fastlane
|
|
|
192
194
|
FastlaneCore::ConfigItem.new(key: :app_id_suffix,
|
|
193
195
|
description: "A suffix to append to the application ID to differentiate between different builds of the same app",
|
|
194
196
|
optional: true,
|
|
197
|
+
type: String),
|
|
198
|
+
FastlaneCore::ConfigItem.new(key: :release_notes,
|
|
199
|
+
description: "A markdown string with release notes for the upload",
|
|
200
|
+
optional: true,
|
|
195
201
|
type: String)
|
|
196
202
|
]
|
|
197
203
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-emerge
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emerge Tools, Inc
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-07-
|
|
11
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|