From e86fdf6f67af87ed922ea24dc03f4210e025a65b Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Fri, 23 Sep 2022 16:01:27 +0200 Subject: [PATCH] release checklist: create a signed tag --- RELEASE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 578bc319..0704da79 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -60,7 +60,7 @@ docker pull flashbots/mev-boost:v2.3.1-rc1 To create a new version (with tag), follow all these steps! They are necessary to have the correct build version inside, and work with `go install`. * Update `Version` in `config/vars.go` - change it to the next version (eg. from `v2.3.1-dev` to `v2.3.1`), and commit -* Create a git tag: `git tag v2.3.1` +* Create a [signed git tag](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-tags): `git tag -s v2.3.1` * Now push to main and push the tag: `git push && git push --tags` * Update `Version` in `config/vars.go` to next patch with `dev` suffix (eg. `v2.3.2-dev`), and commit