Skip to content

Commit

Permalink
Add step for importing the committer's public key from the key server (
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari authored Dec 14, 2023
1 parent 306b819 commit 4b920f9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions contribute/create-gpg-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,12 @@ cd pulsar-dist-release-keys
svn up KEYS

APACHEID=apacheid

# import the key from the keyserver, ensure that the key id matches the one provided by the committer
gpg --search-keys $APACHEID@apache.org
KEY_ID=$(gpg --list-keys --with-colons $APACHEID@apache.org | egrep "^pub" | awk -F: '{print $5}')
echo "key id: $KEY_ID"

# Export the key in ascii format and append it to the file
# Make sure that the GPG key id matches the one from the committer
( gpg --list-sigs $APACHEID@apache.org
Expand Down

0 comments on commit 4b920f9

Please sign in to comment.