Skip to content
Closed
Changes from all commits
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
8 changes: 8 additions & 0 deletions doc/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,20 @@ Use `tools/release.sh` to promote and sign the build. When run, it will perform

**d.** Use `scp` to download SHASUMS256.txt to a temporary directory on your computer.

```
scp [email protected]:~/nodejs/release/vx.y.z/SHASUMS256.txt /path/to/local/SHASUM256.txt
```

**e.** Sign the SHASUMS256.txt file using a command similar to: `gpg --default-key YOURKEY --clearsign /path/to/SHASUMS256.txt`. You will be prompted by GPG for your password. The signed file will be named SHASUMS256.txt.asc.

**f.** Output an ASCII armored version of your public GPG key using a command similar to: `gpg --default-key YOURKEY --armor --export --output /path/to/SHASUMS256.txt.gpg`. This does not require your password and is mainly a convenience for users, although not the recommended way to get a copy of your key.

**g.** Upload the SHASUMS256.txt files back to the server into the release directory.

```
scp /path/to/SHASUMS256.txt* [email protected]:~/nodejs/release/vx.y.z
```

If you didn't wait for ARM builds in the previous step before promoting the release, you should re-run `tools/release.sh` after the ARM builds have finished. That will move the ARM artifacts into the correct location. You will be prompted to re-sign SHASUMS256.txt.

### 13. Check the Release
Expand Down