fastlane-plugin-emerge 0.2.0 → 0.2.1
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: 9aff516861f028150b41676dec2e066c71cbacba42ee5703b7f580f2b9882450
|
|
4
|
+
data.tar.gz: e16dd75722493adf65d31fe45d3e3a504c71368861d029d15636f14d39a4ee54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84c97fec983bf5925e23b6726896faa2de2a1fef1ca36c78669165da1a1044cba9ebf983efdd59963e63791daa65858b492db22efa054f5f6ac84bb8b87be00b
|
|
7
|
+
data.tar.gz: 8564d86036ae326e3c5692304a14a4319092b02f7f964ef674ed7970c5bcedaac5aea40b2e3823eb6e0e59f6e6d17b068d7d8718acd580f0fdd8f348ac3ad3ff
|
|
@@ -19,6 +19,7 @@ module Fastlane
|
|
|
19
19
|
build_id = params[:build_id]
|
|
20
20
|
base_build_id = params[:base_build_id]
|
|
21
21
|
repo_name = params[:repo_name]
|
|
22
|
+
gitlab_project_id = params[:gitlab_project_id]
|
|
22
23
|
build_type = params[:build_type]
|
|
23
24
|
|
|
24
25
|
if !File.exist?(file_path)
|
|
@@ -75,6 +76,9 @@ module Fastlane
|
|
|
75
76
|
if repo_name
|
|
76
77
|
params[:repoName] = repo_name
|
|
77
78
|
end
|
|
79
|
+
if gitlab_project_id
|
|
80
|
+
params[:gitlabProjectId] = gitlab_project_id
|
|
81
|
+
end
|
|
78
82
|
params[:buildType] = build_type || "development"
|
|
79
83
|
FastlaneCore::PrintTable.print_values(
|
|
80
84
|
config: params,
|
|
@@ -143,6 +147,10 @@ module Fastlane
|
|
|
143
147
|
description: "Full name of the respository this upload was triggered from. For example: EmergeTools/Emerge",
|
|
144
148
|
optional: true,
|
|
145
149
|
type: String),
|
|
150
|
+
FastlaneCore::ConfigItem.new(key: :gitlab_project_id,
|
|
151
|
+
description: "Id of the gitlab project this upload was triggered from",
|
|
152
|
+
optional: true,
|
|
153
|
+
type: Integer),
|
|
146
154
|
FastlaneCore::ConfigItem.new(key: :build_type,
|
|
147
155
|
description: "Type of build, either release or development. Defaults to development",
|
|
148
156
|
optional: true,
|
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.2.
|
|
4
|
+
version: 0.2.1
|
|
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: 2021-04-
|
|
11
|
+
date: 2021-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|