summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2019-10-21 15:24:55 +0000
committermo khan <mo.khan@gmail.com>2019-10-21 15:24:55 +0000
commita6adceebeb1ca109439636f90459263ddc828682 (patch)
tree746ffcea87ec81e42bde96bcb6dd1d6b52ae6c21 /README.md
parent3bbac84b46cf8419fb7a6f0304217ad810a842b2 (diff)
parent4c16c21d0dbee59da43479a59415fa126d25b4bf (diff)
Merge branch '14727-document-release-process' into 'master'
Add documentation on how to release new versions See merge request gitlab-org/security-products/license-management!69
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index 8712ad5..c1870e4 100644
--- a/README.md
+++ b/README.md
@@ -106,6 +106,24 @@ to the docker command.
## Versioning and release process
+1. Create a new entry in the `.gitlab-ci.yml` file for the new version to release.
+
+ ```yaml
+ 12-x-stable:
+ extends: .release
+ variables:
+ DOTENV: ".env.12-x-stable"
+ ```
+
+2. Create a new `.env.*` that corresponds to the version to release and specify the default configuration.
+
+ ```text
+ FEATURE_RUBY_REPORT 'true'
+ LM_PYTHON_VERSION '3.5'
+ LM_REPORT_VERSION '2.0'
+ LM_V1_CANONICALIZE 'true'
+ ```
+
Please check the [Release Process documentation](https://gitlab.com/gitlab-org/security-products/release/blob/master/docs/release_process.md).
# Contributing