File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -58,5 +58,7 @@ plugin_commands=(
58
58
GNUPGHOME=" $( mktemp -d) "
59
59
export GNUPGHOME
60
60
curl -sS https://pgp.mongodb.com/cpp-driver.pub | gpg -q --no-default-keyring --import -
61
- gpgv " ${dist_file_signed:? } " " ${dist_file:? } "
61
+ gpg -q --import-ownertrust <<< " DC7F679B8A34DD606C1E54CAC4FC994D21532195:6:" # Set trust to "ultimate".
62
+ gpg -q --update-trustdb
63
+ gpg -q --verify " ${dist_file_signed:? } " " ${dist_file:? } "
62
64
)
Original file line number Diff line number Diff line change @@ -48,8 +48,9 @@ git_tag_command=(
48
48
" \" ${release_tag:? } \" "
49
49
)
50
50
plugin_commands=" "
51
- plugin_commands+=" gpg --list-key DC7F679B8A34DD606C1E54CAC4FC994D21532195"
52
- plugin_commands+=" && ${git_tag_command[*]:? } "
51
+ plugin_commands+=" gpg -q --update-trustdb"
52
+ plugin_commands+=" && gpg --list-key DC7F679B8A34DD606C1E54CAC4FC994D21532195"
53
+ plugin_commands+=" && ${git_tag_command[*]:? } "
53
54
" ${launcher:? } " run \
54
55
--env-file=" ${garasign_creds:? } " \
55
56
-e " PLUGIN_COMMANDS=${plugin_commands:? } " \
@@ -63,5 +64,7 @@ plugin_commands+="&& ${git_tag_command[*]:?}"
63
64
GNUPGHOME=" $( mktemp -d) "
64
65
export GNUPGHOME
65
66
curl -sS https://pgp.mongodb.com/cpp-driver.pub | gpg -q --no-default-keyring --import -
67
+ gpg -q --import-ownertrust <<< " DC7F679B8A34DD606C1E54CAC4FC994D21532195:6:" # Set trust to "ultimate".
68
+ gpg -q --update-trustdb
66
69
git verify-tag " ${release_tag:? } "
67
70
)
You can’t perform that action at this time.
0 commit comments