We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd813bf commit c004c42Copy full SHA for c004c42
scripts/setup-signing-key.sh
@@ -6,9 +6,9 @@ set -e
6
echo 'Decode decrypter'
7
echo ${DECRYPTER} > decrypter.json
8
echo 'Decode signing key'
9
-echo ${SIGNING_KEY} > signing_key.enc
+echo ${SIGNING_KEY} | base64 --decode > signing_key.enc
10
echo 'Decode passphrase'
11
-echo ${PASSPHRASE} > signing_passphrase.enc
+echo ${PASSPHRASE} | base64 --decode > signing_passphrase.enc
12
13
gcloud auth activate-service-account --key-file decrypter.json
14
0 commit comments