Skip to content

Commit de86562

Browse files
authored
Correct tag name & complete command suggestion (arkworks-rs#569)
* tagname should be prefixed with "v" * suggest the full command complete with a version name
1 parent f57b882 commit de86562

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/release-pr-template.ejs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ This is a release PR for version **<%= version.actual %>**<%
99
You will still need to manually publish the cargo crate:
1010

1111
```
12-
$ make VERSION=<latest version> release
12+
$ make VERSION=<%= version.actual %> release
1313
```

makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ ifndef VERSION
1111
endif
1212
git pull
1313
cargo update
14-
git tag $(VERSION)
15-
git push origin $(VERSION)
14+
git tag v$(VERSION)
15+
git push origin v$(VERSION)
1616
cargo release publish --execute --verbose

0 commit comments

Comments
 (0)