Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
0c375c80
Commit
0c375c80
authored
Mar 15, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'patch-28' into 'master'
Update README.md See merge request gitlab-org/gitlab-ce!17344
parents
842f42f4
8803fe41
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+4
-4
No files found.
doc/ci/yaml/README.md
View file @
0c375c80
...
...
@@ -966,7 +966,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
```
...
...
@@ -975,7 +975,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
```
...
...
@@ -987,7 +987,7 @@ If you use **Windows Batch** to run your shell scripts you need to replace
```
yaml
job
:
artifacts
:
name
:
"
%CI_JOB_STAGE%
_
%CI_COMMIT_REF_NAME%"
name
:
"
%CI_JOB_STAGE%
-
%CI_COMMIT_REF_NAME%"
untracked
:
true
```
...
...
@@ -997,7 +997,7 @@ If you use **Windows PowerShell** to run your shell scripts you need to replace
```
yaml
job
:
artifacts
:
name
:
"
$env:CI_JOB_STAGE
_
$env:CI_COMMIT_REF_NAME"
name
:
"
$env:CI_JOB_STAGE
-
$env:CI_COMMIT_REF_NAME"
untracked
:
true
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment