Commit 25848fbd authored by Jaime Martinez's avatar Jaime Martinez Committed by Nick Gaskill

Add release description from file to the release yaml node

parent 900f072e
......@@ -3835,7 +3835,23 @@ The Release name. If omitted, it is populated with the value of `release: tag_na
#### `release:description`
Specifies the longer description of the Release.
Specifies the long description of the Release. You can also specify a file that contains the
description.
##### Read description from a file
> [Introduced](https://gitlab.com/gitlab-org/release-cli/-/merge_requests/67) in GitLab 13.7.
You can specify a file in `$CI_PROJECT_DIR` that contains the description. The file must be relative
to the project directory (`$CI_PROJECT_DIR`), and if the file is a symbolic link it can't reside
outside of `$CI_PROJECT_DIR`. The `./path/to/file` and file name can't contain spaces.
```yaml
job:
release:
tag_name: ${MAJOR}_${MINOR}_${REVISION}
description: './path/to/CHANGELOG.md'
```
#### `release:ref`
......
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