summaryrefslogtreecommitdiff
path: root/scripts/setup_publish_keys.sh
blob: 2b1331d8efd9a85cf3c9cc4295d7228aced50283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -e

if [[ -n $GOOGLE_KEY ]]; then
  echo $GOOGLE_KEY | base64 -d > key.json
fi
if [[ -n $KEY ]]; then
  wget "https://github.com/navit-gps/infrastructure-blackbox/raw/master/keyrings/keystore.gpg"
  openssl aes-256-cbc -d -in keystore.gpg -md md5 -k $KEY > ~/.keystore
  keytool -importkeystore -srcstorepass "$STORE_PASS" -deststorepass "$STORE_PASS" -srckeystore ~/.keystore -destkeystore ~/.keystore -deststoretype pkcs12
  keytool -keypasswd -alias $KEY_ALIAS -storepass $STORE_PASS -new $KEY_PASS -keystore ~/.keystore
  rm keystore.gpg
fi