Skip to content

Commit

Permalink
Merge pull request #255 from leobenkel/patch-1
Browse files Browse the repository at this point in the history
Update readme: Add command to push distribute GPG keys
  • Loading branch information
eed3si9n authored Dec 15, 2022
2 parents d4fc0e5 + a768daf commit 44dbe9b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,23 @@ and post the signature to a keyserver: https://keyserver.ubuntu.com/

![Ubuntu Keyserver](https://i.imgur.com/njvOpmq.png)

or run:

```bash
# macOS
gpg --keyserver hkp://keyserver.ubuntu.com --send-key $LONG_ID && \
gpg --keyserver hkp://pgp.mit.edu --send-key $LONG_ID && \
gpg --keyserver hkp://pool.sks-keyservers.net --send-key $LONG_ID
# linux
gpg --keyserver hkp://keyserver.ubuntu.com --send-key $LONG_ID && \
gpg --keyserver hkp://pgp.mit.edu --send-key $LONG_ID && \
gpg --keyserver hkp://pool.sks-keyservers.net --send-key $LONG_ID
# Windows
gpg --keyserver hkp://keyserver.ubuntu.com --send-key %LONG_ID% && \
gpg --keyserver hkp://pgp.mit.edu --send-key %LONG_ID% && \
gpg --keyserver hkp://pool.sks-keyservers.net --send-key %LONG_ID%
```

## Secrets

Next, you'll need to declare four environment variables in your CI. Open the
Expand Down

0 comments on commit 44dbe9b

Please sign in to comment.