From fb784f4e3db72e9a9c16a27e8b58ac19a3715ce2 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 24 Dec 2025 19:02:30 -0300 Subject: [PATCH] chore(taskfile): create tag as annotated and add message automatically --- Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index 6b56089a..ffdf8910 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -226,7 +226,7 @@ tasks: - "git add --all" - "git commit -m v{{.VERSION}}" - "git push" - - "git tag v{{.VERSION}}" + - "git tag -a v{{.VERSION}} -m v{{.VERSION}}" - "git push origin tag v{{.VERSION}}" - cmd: printf "%s" '{{.COMPLETE_MESSAGE}}' silent: true