Commit 0c375c80 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'patch-28' into 'master'

Update README.md

See merge request gitlab-org/gitlab-ce!17344
parents 842f42f4 8803fe41
...@@ -966,7 +966,7 @@ tag including only the files that are untracked by Git: ...@@ -966,7 +966,7 @@ tag including only the files that are untracked by Git:
```yaml ```yaml
job: job:
artifacts: artifacts:
name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}" name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
untracked: true untracked: true
``` ```
...@@ -975,7 +975,7 @@ To create an archive with a name of the current [stage](#stages) and branch name ...@@ -975,7 +975,7 @@ To create an archive with a name of the current [stage](#stages) and branch name
```yaml ```yaml
job: job:
artifacts: artifacts:
name: "${CI_JOB_STAGE}_${CI_COMMIT_REF_NAME}" name: "$CI_JOB_STAGE-$CI_COMMIT_REF_NAME"
untracked: true untracked: true
``` ```
...@@ -987,7 +987,7 @@ If you use **Windows Batch** to run your shell scripts you need to replace ...@@ -987,7 +987,7 @@ If you use **Windows Batch** to run your shell scripts you need to replace
```yaml ```yaml
job: job:
artifacts: artifacts:
name: "%CI_JOB_STAGE%_%CI_COMMIT_REF_NAME%" name: "%CI_JOB_STAGE%-%CI_COMMIT_REF_NAME%"
untracked: true untracked: true
``` ```
...@@ -997,7 +997,7 @@ If you use **Windows PowerShell** to run your shell scripts you need to replace ...@@ -997,7 +997,7 @@ If you use **Windows PowerShell** to run your shell scripts you need to replace
```yaml ```yaml
job: job:
artifacts: artifacts:
name: "$env:CI_JOB_STAGE_$env:CI_COMMIT_REF_NAME" name: "$env:CI_JOB_STAGE-$env:CI_COMMIT_REF_NAME"
untracked: true untracked: true
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment