Skip to content
Snippets Groups Projects
Commit 46e66f58 authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Merge branch '3147-gitlab-ci-yml-variables-adjust-docs' into 'master'

Fixed suggestion in documentation resulting in linting error 'variables should be a map of key-valued strings'

Documentation now suggests a valid option with the intended result.

See #3147 

`"yes"`, opposed to `yes` is not casted to a boolean. `variables` only accepts key-valued strings.

Better solution would be to change the parsing of `variables` (allow boolean or check the actual value of the string).



See merge request !1660
parents ada2d231 38a93a25
No related branches found
No related tags found
No related merge requests found
Pipeline #
Loading
Loading
@@ -90,7 +90,7 @@ you need to set MYSQL_ALLOW_EMPTY_PASSWORD.
- mysql
variables:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
```
 
For other possible configuration variables check the
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment