Skip to content

Commit

Permalink
CI: restore taking key store settings from secrets
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vmiklos committed Oct 29, 2024
1 parent 2577845 commit 198e01c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/ci-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 198e01c

Please sign in to comment.