chore(taskfile): change `release` task to add a commit for the tag (#1159)

Andrey Nering created

Change summary

Taskfile.yaml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Detailed changes

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