release.sh: store signing password
This commit is contained in:
@@ -53,12 +53,12 @@ fi
|
|||||||
if [[ "$3" == "release" ]] ; then
|
if [[ "$3" == "release" ]] ; then
|
||||||
# do release build, and sign the APKs.
|
# do release build, and sign the APKs.
|
||||||
TARGET="release"
|
TARGET="release"
|
||||||
echo -n Keystore Password:
|
|
||||||
read -s password
|
|
||||||
export P4A_RELEASE_KEYSTORE=~/.keystore
|
export P4A_RELEASE_KEYSTORE=~/.keystore
|
||||||
export P4A_RELEASE_KEYSTORE_PASSWD=$password
|
|
||||||
export P4A_RELEASE_KEYALIAS_PASSWD=$password
|
|
||||||
export P4A_RELEASE_KEYALIAS=electrum
|
export P4A_RELEASE_KEYALIAS=electrum
|
||||||
|
if [ ! $P4A_RELEASE_KEYSTORE_PASSWD ]; then
|
||||||
|
echo "p4a password not defined"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
elif [[ "$3" == "release-unsigned" ]] ; then
|
elif [[ "$3" == "release-unsigned" ]] ; then
|
||||||
# do release build, but do not sign the APKs.
|
# do release build, but do not sign the APKs.
|
||||||
TARGET="release"
|
TARGET="release"
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
here=$(dirname "$0")
|
here=$(dirname "$0")
|
||||||
|
if [ ! $WIN_SIGNING_PASSWORD ]-, then
|
||||||
|
echo "password missing"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
test -n "$here" -a -d "$here" || exit
|
test -n "$here" -a -d "$here" || exit
|
||||||
cd $here
|
cd $here
|
||||||
|
|
||||||
@@ -21,13 +26,10 @@ mkdir -p signed >/dev/null 2>&1
|
|||||||
cd dist
|
cd dist
|
||||||
echo "Found $(ls *.exe | wc -w) files to sign."
|
echo "Found $(ls *.exe | wc -w) files to sign."
|
||||||
|
|
||||||
echo -n "Windows codesign passphrase:"
|
|
||||||
read -s password
|
|
||||||
|
|
||||||
for f in $(ls *.exe); do
|
for f in $(ls *.exe); do
|
||||||
echo "Signing $f..."
|
echo "Signing $f..."
|
||||||
osslsigncode sign \
|
osslsigncode sign \
|
||||||
-pass $password\
|
-pass $WIN_SIGNING_PASSWORD\
|
||||||
-h sha256 \
|
-h sha256 \
|
||||||
-certs "$CERT_FILE" \
|
-certs "$CERT_FILE" \
|
||||||
-key "$KEY_FILE" \
|
-key "$KEY_FILE" \
|
||||||
|
|||||||
@@ -57,6 +57,11 @@ if [ "$GPGUSER" == "ThomasV" ]; then
|
|||||||
PUBKEY="--local-user 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6"
|
PUBKEY="--local-user 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6"
|
||||||
export SSHUSER=thomasv
|
export SSHUSER=thomasv
|
||||||
RELEASEMANAGER=1
|
RELEASEMANAGER=1
|
||||||
|
echo -n "Code signing passphrase:"
|
||||||
|
read -s password
|
||||||
|
export WIN_SIGNING_PASSWORD=$password
|
||||||
|
export P4A_RELEASE_KEYSTORE_PASSWD=$password
|
||||||
|
export P4A_RELEASE_KEYALIAS_PASSWD=$password
|
||||||
elif [ "$GPGUSER" == "sombernight_releasekey" ]; then
|
elif [ "$GPGUSER" == "sombernight_releasekey" ]; then
|
||||||
PUBKEY="--local-user 0EEDCFD5CAFB459067349B23CA9EEEC43DF911DC"
|
PUBKEY="--local-user 0EEDCFD5CAFB459067349B23CA9EEEC43DF911DC"
|
||||||
export SSHUSER=sombernight
|
export SSHUSER=sombernight
|
||||||
|
|||||||
Reference in New Issue
Block a user