dev-release: Create signed tags for the release

Instead of creating annotated tags, create signed tags.

Also, explicitly specify the tag message.

Change-Id: If26601436df69cde5486444f9274b2f68c45d27b
This commit is contained in:
David Pursehouse 2017-07-03 14:22:34 +09:00
parent 5bec3878b4
commit 02224a1a2d

View File

@ -104,16 +104,16 @@ version as parameter, e.g.:
./tools/version.py 2.5
----
Commit the changes and create the release tag on the new commit:
Commit the changes and create a signed release tag on the new commit:
----
git tag -a v2.5
git tag -s -m "v2.5" v2.5
----
Tag the plugins:
----
git submodule foreach git tag -a v2.5
git submodule foreach git tag -s -m "v2.5" v2.5
----
[[build-gerrit]]