From ea17b9edb708bc5ea26fec95dda66a6f45753545 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Sun, 22 Dec 2024 09:45:16 -0500 Subject: [PATCH] release docs: Fix `git push` command for the release tag Git can be configured to push tags with `push.followTags` but this is not the default. Pushing the tag explicitly with `git push ` is generally considered safer anyways since it only attempts to push the desired tag. --- docs/releases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/releases.md b/docs/releases.md index 84f95c97..41b523c5 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -16,7 +16,7 @@ being published. * Add new `` entry in `contrib/Helix.appdata.xml` with release information according to the [AppStream spec](https://www.freedesktop.org/software/appstream/docs/sect-Metadata-Releases.html) * Tag and push * Switch to master and pull - * `git tag -s -m "" -a && git push` (note the `-s` which signs the tag) + * `git tag -s -m "" -a && git push origin ` (note the `-s` which signs the tag) * Wait for the Release CI to finish * It will automatically turn the git tag into a GitHub release when it uploads artifacts * Edit the new release