From 6984ff5f256276603810f33d03d31cd2bb7b760c Mon Sep 17 00:00:00 2001 From: Doug Parker Date: Sat, 17 Feb 2024 15:59:28 -0800 Subject: [PATCH] Updates release documentation to use `git push --tags` over `git push --follow-tags`. `git push --follow-tags` only applies to _annotated_ tags, which is not the case for `git tag `, so it doesn't actually work for this use case. Instead we need to push the commit and tag separately. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 108b1be..d915e0b 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,8 @@ Run tests with `npm test`. Debug tests with `npm run test-debug` and then openin ```shell git add . && git commit -m "Release v0.0.1." git tag releases/0.0.1 - git push --follow-tags + git push + git push --tags ``` 1. Go to [GitHub releases](https://github.com/dgp1130/HydroActive/releases/) and create a new release with a changelog.