From 198e01c8ecb6825476a57b66dc396f43efebda80 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 29 Oct 2024 21:33:17 +0100 Subject: [PATCH] CI: restore taking key store settings from secrets The root of the problem was not quoting the arg of "echo" when writing the base64 of the .jks, but by the time I figured this out, I lost the old value of the KEYSTORE secret, so re-generate all 4 and try to re-enable this. --- tools/ci-build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/ci-build.sh b/tools/ci-build.sh index 57e45a25..516c5a5d 100755 --- a/tools/ci-build.sh +++ b/tools/ci-build.sh @@ -10,8 +10,7 @@ # mkdir -p app/keystore/ -# TODO get this working on Linux -if [ -n "$KEYSTORE" -a `uname` != Linux ]; then +if [ -n "$KEYSTORE" ]; then echo "$KEYSTORE" | base64 -d > app/keystore/plees_keystore.jks fi