Merge branch 'docs/no-artifacts-passing' into 'master'
Document how to prevent artifacts from passing to next stage See merge request !7575
This commit is contained in:
commit
9d4a45ef21
1 changed files with 9 additions and 0 deletions
|
@ -760,6 +760,15 @@ artifacts:
|
||||||
- binaries/
|
- binaries/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To disable artifact passing, define the job with empty [dependencies](#dependencies):
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
job:
|
||||||
|
stage: build
|
||||||
|
script: make build
|
||||||
|
dependencies: []
|
||||||
|
```
|
||||||
|
|
||||||
You may want to create artifacts only for tagged releases to avoid filling the
|
You may want to create artifacts only for tagged releases to avoid filling the
|
||||||
build server storage with temporary build artifacts.
|
build server storage with temporary build artifacts.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue