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:
secret$example123 - To:
secret$$example123