From f9b5c5b6480549af8a5b7b4f110a2ee53eb5f3bb Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 27 Oct 2024 13:14:48 +0300 Subject: [PATCH] Improve push tag command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cab111f..9c8a6e8 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ tag: git tag -a ${v} -m "${v}" push-tag: - git push origin ${v} + git add . && git commit -m "Bump version" && git push origin ${v} mypy: pdm run mypy src