Skip to content

Commit f345ceb

Browse files
authored
Try and fix main build pipeline (envoyproxy#202)
Signed-off-by: rulex123 <[email protected]>
1 parent 1b1c812 commit f345ceb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
command: |
4242
if [ "${CIRCLE_BRANCH}" == "main" ]; then
4343
echo $GPG_KEY | base64 --decode > signing-key
44-
gpg --passphrase $GPG_PASSPHRASE --import signing-key
44+
gpg --batch --passphrase $GPG_PASSPHRASE --import signing-key
4545
shred signing-key
4646
4747
if [[ -n "${RELEASE}" && -n "${NEXT}" ]]; then
@@ -53,7 +53,7 @@ jobs:
5353
fi
5454
elif [[ -n "${DEPLOY_BRANCH}" ]]; then
5555
echo $GPG_KEY | base64 --decode > signing-key
56-
gpg --passphrase $GPG_PASSPHRASE --import signing-key
56+
gpg --batch --passphrase $GPG_PASSPHRASE --import signing-key
5757
shred signing-key
5858
5959
mvn -B -s .circleci/settings-snapshots.xml deploy

0 commit comments

Comments
 (0)