Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc: mention GPG=$(TTY) when signing tag
  • Loading branch information
RafaelGSS committed May 8, 2024
commit a636af1357b6e94b4dbca903fc25409c713e3eeb
10 changes: 9 additions & 1 deletion doc/contributing/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,15 @@ npm install -g git-secure-tag

> Ensure to disable `--follow-tags` in your git settings using: `git config push.followTags false`

Create a tag using the following command:
If your GPG key is protected by a password, you might need to run:
Comment thread
RafaelGSS marked this conversation as resolved.
Outdated

```console
$ export GPG_TTY=$(tty)
Comment thread
RafaelGSS marked this conversation as resolved.
Outdated
```

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