From af771867d24e5b2bc6248c73decefffd57745b2a Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Fri, 27 Feb 2026 15:46:31 -0500 Subject: [PATCH] chore(useragent): bump version during task release --- Taskfile.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 34455b902caf2d91f03c03683ed5ac8d3d1f722a..6ae12c51821128e991997e9ae69533d5c226d501 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -37,7 +37,9 @@ tasks: - sh: "[ $(git status --porcelain=2 | wc -l) = 0 ]" msg: "Git is dirty" cmds: - - git commit --allow-empty -m "{{.NEXT}}" + - echo {{trimPrefix "v" .NEXT}} > version.txt + - git add version.txt + - git commit -m "{{.NEXT}}" - git tag --annotate --sign -m "{{.NEXT}}" {{.NEXT}} {{.CLI_ARGS}} - echo "Pushing {{.NEXT}}..." - git push origin main --follow-tags