summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pundsack <markpundsack@users.noreply.github.com>2016-07-18 14:21:43 -0700
committerMark Pundsack <markpundsack@users.noreply.github.com>2016-07-18 14:21:43 -0700
commite9305ca5741ae92ae80fb3d9e32f843aab97a08a (patch)
treece0d3ada39276508f894362c98a6f5c1e8db3cef
parentc367fa8eb773a049ffdfe4735d42254ed808fef2 (diff)
downloadgitlab-ce-19892-documentation.tar.gz
Update documentation for build artifact dependencies19892-documentation
-rw-r--r--doc/ci/yaml/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 50fa263f693..5f77888f631 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -757,12 +757,13 @@ Introduced in GitLab 8.6 and GitLab Runner v1.1.1.
This feature should be used in conjunction with [`artifacts`](#artifacts) and
allows you to define the artifacts to pass between different builds.
-Note that `artifacts` from previous [stages](#stages) are passed by default.
+Note that `artifacts` from all previous [stages](#stages) are passed by default.
To use this feature, define `dependencies` in context of the job and pass
a list of all previous builds from which the artifacts should be downloaded.
You can only define builds from stages that are executed before the current one.
An error will be shown if you define builds from the current stage or next ones.
+Defining an empty array will skip downloading any artifacts for that job.
---