Skip to content

Commit 21afe67

Browse files
committed
#35 Do not hard code volatile key id in docs
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent f998a36 commit 21afe67

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

release.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ gpg --import private.key
6161
#### For GitHub Actions
6262

6363
```shell
64-
gpg --armor --export-secret-keys 40AA7D29EB6DE0667D7E723ADE4725604A739BAF
64+
gpg --armor --export-secret-keys $KEYID
6565
```
6666

6767
In the GitHub Secrets [1], add the output of this command to the `SIGNING_KEY` secret.
@@ -83,7 +83,7 @@ For example:
8383
#### For Password Manager
8484

8585
```shell
86-
gpg -o private.key --export-secret-key 40AA7D29EB6DE0667D7E723ADE4725604A739BAF
86+
gpg -o private.key --export-secret-key $KEYID
8787
```
8888

8989
### Expiration
@@ -97,8 +97,8 @@ To remember, we added an appointment to the team calendar.
9797

9898
1. Download the private key file `private.key` from password manager
9999
2. Import it locally: `gpg --import private.key`
100-
3. Select the key : `gpg --edit-key 40AA7D29EB6DE0667D7E723ADE4725604A739BAF`
101-
4. Now select the Subkey and set the expire date (use `2y` for two years):
100+
3. Select the key : `gpg --edit-key $KEYID`
101+
4. Now select the subkey and set the expire date (use `2y` for two years):
102102
```shell
103103
gpg> key 1
104104
gpg> expire

0 commit comments

Comments
 (0)