From c8f4a25df3ba3f47aaa0eaa207c608e4f54d8078 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Tue, 29 Jul 2025 00:41:46 -0400 Subject: [PATCH] chore: adjust release command --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 3b78766..302c0d8 100644 --- a/justfile +++ b/justfile @@ -115,7 +115,7 @@ release *args: VERSION=$(cargo metadata --format-version 1 | jq -r '.packages[] | select(.name == "blue-build") .version') echo "Pushing tag: v${VERSION}" - git tag "v${VERSION}" + git tag -m "v${VERSION}" "v${VERSION}" git push origin "v${VERSION}" gh release create --generate-notes --latest "v${VERSION}"