summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2016-07-21 06:05:46 +0000
committerAchilleas Pipinellis <axilleas@axilleas.me>2016-07-21 06:05:46 +0000
commit39e8afa49ce91e6f767576405efec57905600163 (patch)
treedcb6179744b5c2b2476b406513aa8cc435908b20
parentb6e249744cd0fe2280b4e56c0c58007f5b07057d (diff)
parent9379d0b1a46fde1b6dd18dd47eee80c08b84df55 (diff)
downloadgitlab-ce-39e8afa49ce91e6f767576405efec57905600163.tar.gz
Merge branch 'artifact-name' into 'master'
Clarify artifacts:name default value ## What does this MR do? Add the default artifact name (`artifacts`) to documentation. ## Are there points in the code the reviewer needs to double check? ## Why was this MR needed? We didn't document the default artifact name. ## What are the relevant issue numbers? ## Screenshots (if relevant) See merge request !5377
-rw-r--r--doc/ci/yaml/README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 31b4fd2669e..01b7748e90e 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -538,7 +538,7 @@ The above script will:
Introduced in GitLab 8.10.
Manual actions are special type of jobs that are not executed automatically in pipeline.
-They need to be explicitly started by the user.
+They need to be explicitly started by the user.
Manual actions can be started from pipelines, builds, environments and deployments views.
You can execute the same manual action multiple times.
@@ -645,9 +645,10 @@ be available for download in the GitLab UI.
Introduced in GitLab 8.6 and GitLab Runner v1.1.0.
The `name` directive allows you to define the name of the created artifacts
-archive. That way, you can have a unique name of every archive which could be
+archive. That way, you can have a unique name for every archive which could be
useful when you'd like to download the archive from GitLab. The `artifacts:name`
variable can make use of any of the [predefined variables](../variables/README.md).
+The default name is `artifacts`, which becomes `artifacts.zip` when downloaded.
---