From 951c0c5f8e375ad4efad33405ab77f7ded2358e4 Mon Sep 17 00:00:00 2001 From: Brian DeHamer Date: Fri, 10 May 2024 10:47:07 -0700 Subject: [PATCH] update release documentation (#66) Signed-off-by: Brian DeHamer --- RELEASE.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/RELEASE.md b/RELEASE.md index a0d9f56..7153491 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -28,3 +28,11 @@ otherwise, skip directly to step #5. ```shell gh release create vX.X.X ``` + +1. Move (or create) the major version tag to point to the same commit tagged + above: + + ```shell + git tag -fa vX -m "vX" + git push origin vX --force + ```