From 53a4703c97e6a55008dd19fe663ec8738452aaf2 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Mon, 29 Sep 2025 15:03:39 -0300 Subject: [PATCH] chore(taskfile): change `release` task to add a commit for the tag (#1159) --- Taskfile.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 80d6bd86d1070e2f4e900660a7cab060ebdfbcea..54b50a68217b6ff66ddf1de9a28a8f45d224fefc 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -97,7 +97,8 @@ tasks: - sh: "[ $(git status --porcelain=2 | wc -l) = 0 ]" msg: "Git is dirty" cmds: + - git commit --allow-empty -m "{{.NEXT}}" - git tag -d nightly - git tag --sign {{.NEXT}} {{.CLI_ARGS}} - - echo "pushing {{.NEXT}}..." + - echo "Pushing {{.NEXT}}..." - git push origin --tags