Commit 3ea8d983 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Keep the value type for YAML variables

Feedback:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8088#note_20235080
parent f2afdc92
...@@ -118,7 +118,7 @@ module Ci ...@@ -118,7 +118,7 @@ module Ci
.merge(job_variables(name)) .merge(job_variables(name))
variables.map do |key, value| variables.map do |key, value|
{ key: key.to_s, value: value.to_s, public: true } { key: key.to_s, value: value, public: true }
end end
end end
......
...@@ -14,7 +14,6 @@ module Gitlab ...@@ -14,7 +14,6 @@ module Gitlab
object.map do |variable| object.map do |variable|
variable[:key] = variable[:key].to_s variable[:key] = variable[:key].to_s
variable[:value] = variable[:value].to_s
variable variable
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment