Skip to content

Commit

Permalink
Correct tag name & complete command suggestion (#569)
Browse files Browse the repository at this point in the history
* tagname should be prefixed with "v"

* suggest the full command complete with a version name
  • Loading branch information
mmagician authored Dec 29, 2022
1 parent f57b882 commit de86562
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/release-pr-template.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -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=<latest version> release
$ make VERSION=<%= version.actual %> release
```
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit de86562

Please sign in to comment.