... | ... | @@ -12,9 +12,9 @@ Just add this code before your `script` block. |
|
|
```
|
|
|
before_script:
|
|
|
...
|
|
|
- git config credential.https://gitlab.esa.int.username $GIT_USER
|
|
|
- git config --global credential.https://gitlab.esa.int.username $CI_REGISTRY_USER
|
|
|
- export GIT_ASKPASS=/git_env_password.sh
|
|
|
- echo -e '#!/bin/bash'"\necho $GIT_PASS" > /git_env_password.sh; chmod +x /git_env_password.sh
|
|
|
- echo -e '#!/bin/bash'"\necho $CI_JOB_TOKEN" > /git_env_password.sh; chmod +x /git_env_password.sh
|
|
|
...
|
|
|
|
|
|
script:
|
... | ... | |