doc: update `git node release` example · nodejs/node@5f3f045

@@ -735,15 +735,34 @@ the build before moving forward. Use the following list as a baseline:

735735

### 11. Tag and sign the release commit

736736737737

Once you have produced builds that you're happy with you can either run

738-

`git node release --promote`

738+

`git node release --promote`:

739739740740

```bash

741-

git node release -S --promote https://github.com/nodejs/node/pull/XXXX

741+

git node release --promote https://github.com/nodejs/node/pull/XXXX -S

742742

```

743743744744

to automate the remaining steps until step 16 or you can perform it manually

745745

following the below steps.

746746747+

<details>

748+

<summary>Security release</summary>

749+750+

For security releases, NCU should be configured to target the public repository,

751+

not the private one where the proposal are hosted. Pass the upstream where to

752+

fetch the proposal from using the `--fetch-from` flag.

753+754+

When promoting several releases, you can pass multiple URLs:

755+756+

```bash

757+

git node release --promote \

758+

--fetch-from git@github.com:nodejs-private/node-private.git \

759+

https://github.com/nodejs-private/node-private/pull/XXXX \

760+

https://github.com/nodejs-private/node-private/pull/XXXX \

761+

-S

762+

```

763+764+

</details>

765+747766

***

748767749768

Create a new tag: By waiting until this stage to create tags, you can discard