Skip to content

Commit

Permalink
test-sigs: Fix key validation
Browse files Browse the repository at this point in the history
My personal key was added here instead of the [email protected] key
which I use for signing GHC-related things.
  • Loading branch information
bgamari committed Sep 22, 2023
1 parent 0972ffb commit 62c55a1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test-sigs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ get_key() {
}

# verify signature
keys=( 7D1E8AFD1D4A16D71FADA2F2CCC85C0E40C06A8C FE5AB6C91FEA597C3B31180B73EDE9E8CFBAEF01 88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4 )
keys=(
7D1E8AFD1D4A16D71FADA2F2CCC85C0E40C06A8C # Julian Ospald <[email protected]>
FFEB7CE81E16A36B3E2DED6F2DE04D4E97DB64AD # Ben Gamari <[email protected]>
88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4 # Zubin Duggal <[email protected]>
)

for key in "${keys[@]}" ; do
get_key "${key}" keys.openpgp.org || get_key "${key}" keyserver.ubuntu.com
done
Expand Down

0 comments on commit 62c55a1

Please sign in to comment.