From ce6a9f3bbd9a3257835174905f311a37480f4d96 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Mon, 26 Sep 2022 00:24:52 +1000
Subject: [PATCH] Add `git tag -a` to release process (#356)

The GitHub Releases feature creates lightweight tags, not annotated tags.
---
 RELEASE_PROCESS.md | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md
index 906354b..88b5432 100644
--- a/RELEASE_PROCESS.md
+++ b/RELEASE_PROCESS.md
@@ -9,6 +9,8 @@
     - [`maud_macros`](maud_macros/src/lib.rs)
 4. `cd docs && cargo update`
 5. Commit to a new branch `release-X.Y.Z`, open a PR, fix issues, merge
-6. [Create a release](https://github.com/lambda-fairy/maud/releases/new)
-7. [Verify that documentation was published](https://github.com/lambda-fairy/maud/actions?query=workflow%3A%22Publish+docs%22) (this should have been triggered by the release)
-8. `cargo publish`
+6. `git tag -a vX.Y.Z && git push --tags`
+    - For the description, use a [My Little Pony quote](https://mlp.fandom.com/wiki/Maud_Pie#Quotes)
+7. [Create a release](https://github.com/lambda-fairy/maud/releases/new) against the new tag
+8. [Verify that documentation was published](https://github.com/lambda-fairy/maud/actions?query=workflow%3A%22Publish+docs%22) (this should have been triggered by the release)
+9. `cargo publish`