summaryrefslogtreecommitdiff
path: root/release/signing-setup.sh
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2019-12-16 03:19:18 +0530
committerGitHub <noreply@github.com>2019-12-16 03:19:18 +0530
commite61551bf3756a49f9eb4ee03bd726f3c6167dad7 (patch)
tree2a4c60c76aa6b24fb492cb2ea57def3cc29483c7 /release/signing-setup.sh
parent3a7c54136047c5d2d7bb807100bcc40affad65d2 (diff)
Setup snapshot deployment (#599)
* Setup snapshot deployment * README: Update repository links * README: Update workflow badge link * README: Add link to Snapshot builds * Fix snapshot/pull-request build conflict * Deploy from feature/deploy-snapshots as well * Revert "Deploy from feature/deploy-snapshots as well" Confirmed it works well This reverts commit 06f6bc0e8c19f238643655d09ca20f83dd416283. Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'release/signing-setup.sh')
-rwxr-xr-xrelease/signing-setup.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/release/signing-setup.sh b/release/signing-setup.sh
new file mode 100755
index 00000000..b60902ee
--- /dev/null
+++ b/release/signing-setup.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+
+ENCRYPT_KEY=$1
+
+if [[ -n "$ENCRYPT_KEY" ]]; then
+ # Decrypt Release key
+ openssl enc -aes-256-cbc -md sha256 -d -in release/keystore.cipher -out keystore.jks -k "${ENCRYPT_KEY}"
+
+ # Decrypt signing config
+ openssl enc -aes-256-cbc -md sha256 -d -in release/props.cipher -out keystore.properties -k "${ENCRYPT_KEY}"
+else
+ echo "ENCRYPT_KEY is empty"
+fi