Skip to content

Commit

Permalink
doc: mention push.followTags config
Browse files Browse the repository at this point in the history
This has happened in v20.13.0 release. Adding this doc
to prevent edge cases where the releaser will sign and push
but won't be able to promote the release.

PR-URL: #52906
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
  • Loading branch information
RafaelGSS authored and targos committed May 12, 2024
1 parent 0deef2d commit 15db3ef
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion doc/contributing/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,17 @@ Install `git-secure-tag` npm module:
npm install -g git-secure-tag
```

Create a tag using the following command:
> Ensure to disable `--follow-tags` in your git settings using: `git config push.followTags false`
If your private key is protected by a passphrase, you might need to run:

```bash
export GPG_TTY=$(tty)
```

before creating the tag.

To create a tag use the following command:

```bash
git secure-tag <vx.y.z> <commit-sha> -sm "YYYY-MM-DD Node.js vx.y.z (<release-type>) Release"
Expand Down

0 comments on commit 15db3ef

Please sign in to comment.