Skip to content

GitLab CI

CI/CD Variables with Dollar Signs ($)

Bug

Dollar Signs ($) are resolved as a variable in GitLab CI.

If you have a variable value (e.g., Harbor robot account username) with a $ in it, you need to "escape" it like this:

  • From:
    1
    secret$example123
    
  • To:
    1
    secret$$example123