Update README.md

This commit is contained in:
John Burak 2018-02-27 16:35:36 +00:00
parent 752b2dac2d
commit 8803fe41b2
1 changed files with 2 additions and 2 deletions

View File

@ -998,7 +998,7 @@ tag including only the files that are untracked by Git:
```yaml
job:
artifacts:
name: "${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
untracked: true
```
@ -1007,7 +1007,7 @@ To create an archive with a name of the current [stage](#stages) and branch name
```yaml
job:
artifacts:
name: "${CI_JOB_STAGE}-${CI_COMMIT_REF_NAME}"
name: "$CI_JOB_STAGE-$CI_COMMIT_REF_NAME"
untracked: true
```