diff options
author | Elan Ruusamäe <glen@delfi.ee> | 2017-04-27 14:12:29 +0000 |
---|---|---|
committer | Elan Ruusamäe <glen@delfi.ee> | 2017-04-27 14:12:29 +0000 |
commit | 54abddf1e046e2cca076505914c50d0fa6e18751 (patch) | |
tree | df51f0ef81d48fa6306d028c6ea3bf7daa5de5c0 /doc | |
parent | 6ae76738dde8fecb117f7706ae2ef74c1d83cdb7 (diff) | |
download | gitlab-ce-54abddf1e046e2cca076505914c50d0fa6e18751.tar.gz |
fix $CI_JOB_ID variable
introduced with rename variables commit: a084437b5c1b7226ce64e74bab1972bb1dbd49e0
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/variables/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/variables/README.md b/doc/ci/variables/README.md index 045d3821f66..9a3bbcf2853 100644 --- a/doc/ci/variables/README.md +++ b/doc/ci/variables/README.md @@ -333,7 +333,7 @@ prefix the variable name with the dollar sign (`$`): ``` job_name: script: - - echo $CI_job_ID + - echo $CI_JOB_ID ``` You can also list all environment variables with the `export` command, |