From ad5d646e4e71f5636f751a4cb4bd288b98ec3304 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Mon, 31 Jan 2022 19:18:48 +0200 Subject: [PATCH] docs/Release-Guide.md: add instructions on how to create signed release tags --- docs/Release-Guide.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Release-Guide.md b/docs/Release-Guide.md index 778edc7fd7..1b02f357b6 100644 --- a/docs/Release-Guide.md +++ b/docs/Release-Guide.md @@ -8,10 +8,10 @@ sort: 17 0. Document all the changes for new release in [CHANGELOG.md](https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/docs/CHANGELOG.md). 1. Create the following release tags: - * `git tag v1.xx.y` in `master` branch - * `git tag v1.xx.y-cluster` in `cluster` branch - * `git tag v1.xx.y-enterprise` in `enterprise` branch - * `git tag v1.xx.y-enterprise-cluster` in `enterprise-cluster` branch + * `git tag -s v1.xx.y` in `master` branch + * `git tag -s v1.xx.y-cluster` in `cluster` branch + * `git tag -s v1.xx.y-enterprise` in `enterprise` branch + * `git tag -s v1.xx.y-enterprise-cluster` in `enterprise-cluster` branch 2. Run `TAG=v1.xx.y make publish-release`. It will create `*.tar.gz` release archives with the corresponding `_checksums.txt` files inside `bin` directory and publish Docker images for the given `TAG`, `TAG-cluster`, `TAG-enterprise` and `TAG-enterprise-cluster`. 5. Push release tag to https://github.com/VictoriaMetrics/VictoriaMetrics : `git push origin v1.xx.y`. 6. Go to https://github.com/VictoriaMetrics/VictoriaMetrics/releases , create new release from the pushed tag on step 5 and upload `*.tar.gz` archive with the corresponding `_checksums.txt` from step 2.