From 84444a2c026aaa108da60d2e2c6aba3201a4ea8a Mon Sep 17 00:00:00 2001 From: Alyssa Coghlan Date: Wed, 30 Oct 2024 20:34:41 +1000 Subject: [PATCH] Add release tagging script --- misc/tag-release.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 misc/tag-release.sh diff --git a/misc/tag-release.sh b/misc/tag-release.sh new file mode 100755 index 0000000..b473bbe --- /dev/null +++ b/misc/tag-release.sh @@ -0,0 +1,3 @@ +#!/bin/sh +version_tag="$(pdm show --version)" +git tag -a "$version_tag" -m "$version_tag"