Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-16 03:08:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-16 03:08:33 +0300
commit292d054661cc3e24bb1a4be98dacfd41fa7ad14e (patch)
treed8a5c9a566603521d1f123130e50cc86938b928e /lib/gitlab/ci/build
parentecfcccb684722316df4cd6c999a2716b44413733 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/ci/build')
-rw-r--r--lib/gitlab/ci/build/releaser.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/gitlab/ci/build/releaser.rb b/lib/gitlab/ci/build/releaser.rb
new file mode 100644
index 00000000000..ba6c7857e96
--- /dev/null
+++ b/lib/gitlab/ci/build/releaser.rb
@@ -0,0 +1,24 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Ci
+ module Build
+ class Releaser
+ BASE_COMMAND = 'release-cli create'
+
+ attr_reader :config
+
+ def initialize(config:)
+ @config = config
+ end
+
+ def script
+ command = BASE_COMMAND.dup
+ config.each { |k, v| command.concat(" --#{k.to_s.dasherize} \"#{v}\"") }
+
+ command
+ end
+ end
+ end
+ end
+end