Skip to content

Commit 907c5da

Browse files
committed
Fixed secret keys
1 parent 92acaa0 commit 907c5da

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.circleci/key.p12.enc

0 Bytes
Binary file not shown.

scripts/decrypt-secrets.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
# https://github.com/circleci/encrypted-files
55

66
ls -al .circleci/
7-
87
echo $ANDROID_NETWORK_TOOLS_DECRYPTKEY1
98

109
# Encrypt
11-
#openssl aes-256-cbc -e -in key.p12 -out .circleci/key.p12.enc -k "${ANDROID_NETWORK_TOOLS_DECRYPTKEY1}"
10+
#openssl aes-256-cbc -e -in key.p12 -out .circleci/key.p12.enc -k $ANDROID_NETWORK_TOOLS_DECRYPTKEY1
1211

1312
# Decrypt
14-
openssl aes-256-cbc -d -in .circleci/key.p12.enc -out key.p12 -k "${ANDROID_NETWORK_TOOLS_DECRYPTKEY1}"
13+
openssl aes-256-cbc -d -in .circleci/key.p12.enc -out key.p12 -k $ANDROID_NETWORK_TOOLS_DECRYPTKEY1

0 commit comments

Comments
 (0)