File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -553,8 +553,30 @@ formatting passes the lint rules on `master`.
553553to promote the builds as the ` SHASUMS256.txt ` file needs to be signed with the
554554same GPG key!**
555555
556- Use ` tools/release.sh ` to promote and sign the build. When run, it will perform
557- the following actions:
556+ Use ` tools/release.sh ` to promote and sign the build. Before doing this, you'll
557+ need to ensure you've loaded the correct ssh key, or you'll see the following:
558+
559+ ``` sh
560+ # Checking for releases ...
561+ Enter passphrase for key ' /Users/<user>/.ssh/id_rsa' :
562+ 563+ ```
564+
565+ The key can be loaded either with `ssh-add`:
566+
567+ ```sh
568+ # Substitute node_id_rsa with whatever you' ve named the key
569+ $ ssh-add ~ /.ssh/node_id_rsa
570+ ```
571+
572+ or at runtime with:
573+
574+ ``` sh
575+ # Substitute node_id_rsa with whatever you've named the key
576+ $ ./tools/release.sh -i ~ /.ssh/node_id_rsa
577+ ```
578+
579+ ` tools/release.sh ` will perform the following actions when run:
558580
559581** a.** Select a GPG key from your private keys. It will use a command similar
560582to: ` gpg --list-secret-keys ` to list your keys. If you don't have any keys, it
You can’t perform that action at this time.
0 commit comments