From 56eee0bc4d8ab86e8efb04527ff1b67ce9dbe1b2 Mon Sep 17 00:00:00 2001 From: mmagician Date: Thu, 29 Dec 2022 14:40:27 +0100 Subject: [PATCH] tagname should be prefixed with "v" --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 833c8a830..fee982a5c 100644 --- a/makefile +++ b/makefile @@ -11,6 +11,6 @@ ifndef VERSION endif git pull cargo update - git tag $(VERSION) - git push origin $(VERSION) + git tag v$(VERSION) + git push origin v$(VERSION) cargo release publish --execute --verbose