From abed5bb0ddcdc7cb61966cce3a7d55e2eb70f539 Mon Sep 17 00:00:00 2001 From: Hiddify Date: Fri, 15 Sep 2023 11:23:45 +0200 Subject: [PATCH] fix: tag version issue --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6dd12102..3e354d5c 100644 --- a/Makefile +++ b/Makefile @@ -119,7 +119,7 @@ release: ## Create a new tag for release. # ./update_translations.sh && \ # git add assets/translations/* && \ git commit -m "release: version $${TAG} 🚀" && \ - echo "creating git tag : $${TAG}" && \ - git tag $${TAG} && \ + echo "creating git tag : v$${TAG}" && \ + git tag v$${TAG} && \ git push -u origin HEAD --tags && \ echo "Github Actions will detect the new tag and release the new version."' \ No newline at end of file