I'm running a gitlab job and in the job I'm trying to unset certain variables set in CI / CD Settings.
For example, I have
SOME_VARIABLE
set to <some_value>
Then, in the job definition, I'm trying
variables:
SOME_VARIABLE: ""
script:
- echo SOME_VARIABLE - [%SOME_VARIABLE%]
But in the job itself I'm still getting
SOME_VARIABLE - [<some_value>]
instead of
SOME_VARIABLE - []
Has anyone came across this?