fastlane-plugin-emerge 0.1.0 → 0.1.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: dda786064d85f768f1b3ee843a5de6d6e38302fbc0684fe5f8ec575665b027d9
|
|
4
|
+
data.tar.gz: f01ab9a333656d2e92fdc2ac7a4f099bfca70c1a8c10b96619666f55441d292c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c598ae3b76daba26c2bbb78c619a160822cb8610e8c5db90e3ae45565b01b9fde4382477aa0db568349c00e2a9cc4abffbf5371ed308c21bb458db0d5bdfd076
|
|
7
|
+
data.tar.gz: fac3984e30f2e0853b9d9dccdc9b86d8bc70a47f97fc21f5c8b84892b4752d75bab281726654cc856837932d75428329cb94e533b581bf307921a877c6b32552
|
|
@@ -7,14 +7,35 @@ module Fastlane
|
|
|
7
7
|
def self.run(params)
|
|
8
8
|
api_token = params[:api_token]
|
|
9
9
|
file_path = params[:file_path]
|
|
10
|
+
pr_number = params[:pr_number]
|
|
11
|
+
build_id = params[:build_id]
|
|
12
|
+
base_build_id = params[:base_build_id]
|
|
13
|
+
repo_name = params[:repo_name]
|
|
14
|
+
build_type = params[:build_type]
|
|
10
15
|
if !File.exist?(file_path) || !File.extname(file_path) == '.zip'
|
|
11
16
|
UI.error("Invalid input file")
|
|
12
17
|
return
|
|
13
18
|
end
|
|
14
19
|
|
|
15
20
|
fileName = File.basename(file_path)
|
|
16
|
-
url = 'https://
|
|
17
|
-
|
|
21
|
+
url = 'https://api.emergetools.com/getUpload'
|
|
22
|
+
params = {
|
|
23
|
+
fileName: fileName,
|
|
24
|
+
}
|
|
25
|
+
if pr_number
|
|
26
|
+
params[:prNumber] = pr_number
|
|
27
|
+
end
|
|
28
|
+
if build_id
|
|
29
|
+
params[:buildId] = build_id
|
|
30
|
+
end
|
|
31
|
+
if base_build_id
|
|
32
|
+
params[:baseBuildId] = base_build_id
|
|
33
|
+
end
|
|
34
|
+
if repo_name
|
|
35
|
+
params[:repoName] = repo_name
|
|
36
|
+
end
|
|
37
|
+
params[:buildType] = build_type || "development"
|
|
38
|
+
resp = Faraday.get(url, params, {'X-API-Token' => api_token})
|
|
18
39
|
case resp.status
|
|
19
40
|
when 200
|
|
20
41
|
json = JSON.parse(resp.body)
|
|
@@ -56,6 +77,26 @@ module Fastlane
|
|
|
56
77
|
env_name: "EMERGE_FILE_PATH",
|
|
57
78
|
description: "Path to the zipped xcarchive or app to upload",
|
|
58
79
|
optional: false,
|
|
80
|
+
type: String),
|
|
81
|
+
FastlaneCore::ConfigItem.new(key: :pr_number,
|
|
82
|
+
description: "The PR number that triggered this upload",
|
|
83
|
+
optional: true,
|
|
84
|
+
type: String),
|
|
85
|
+
FastlaneCore::ConfigItem.new(key: :build_id,
|
|
86
|
+
description: "A string to identify this build",
|
|
87
|
+
optional: true,
|
|
88
|
+
type: String),
|
|
89
|
+
FastlaneCore::ConfigItem.new(key: :base_build_id,
|
|
90
|
+
description: "Id of the build to compare with this upload",
|
|
91
|
+
optional: true,
|
|
92
|
+
type: String),
|
|
93
|
+
FastlaneCore::ConfigItem.new(key: :repo_name,
|
|
94
|
+
description: "Full name of the respository this upload was triggered from. For example: EmergeTools/Emerge",
|
|
95
|
+
optional: true,
|
|
96
|
+
type: String),
|
|
97
|
+
FastlaneCore::ConfigItem.new(key: :build_type,
|
|
98
|
+
description: "Type of build, either release or development. Defaults to development",
|
|
99
|
+
optional: true,
|
|
59
100
|
type: String)
|
|
60
101
|
]
|
|
61
102
|
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.1.
|
|
4
|
+
version: 0.1.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:
|
|
11
|
+
date: 2021-02-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|