doc: use `git-secure-tag` for release tags · nodejs/node@0f3f76c

Original file line numberDiff line numberDiff line change

@@ -216,10 +216,16 @@ Once you have produced builds that you're happy with, create a new tag. By waiti

216216
217217

Tag summaries have a predictable format, look at a recent tag to see, `git tag -v v6.0.0`. The message should look something like `2016-04-26 Node.js v6.0.0 (Current) Release`.

218218
219+

Install `git-secure-tag` npm module:

220+
221+

```console

222+

$ npm install -g git-secure-tag

223+

```

224+
219225

Create a tag using the following command:

220226
221227

```sh

222-

$ git tag <vx.y.z> <commit-sha> -sm 'YYYY-MM-DD Node.js vx.y.z (Release Type) Release'

228+

$ git secure-tag <vx.y.z> <commit-sha> -sm 'YYYY-MM-DD Node.js vx.y.z (Release Type) Release'

223229

```

224230
225231

The tag **must** be signed using the GPG key that's listed for you on the project README.