diff --git a/.github/release-pr-template.ejs b/.github/release-pr-template.ejs index 749f193b5..515c86ed9 100644 --- a/.github/release-pr-template.ejs +++ b/.github/release-pr-template.ejs @@ -9,5 +9,5 @@ This is a release PR for version **<%= version.actual %>**<% You will still need to manually publish the cargo crate: ``` -$ make VERSION= release +$ make VERSION=<%= version.actual %> release ``` 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