From 602b0b45d706405ca24a5e93a4e5693a1c55f704 Mon Sep 17 00:00:00 2001 From: Ivan Murashka Date: Fri, 11 Dec 2020 20:55:53 +0300 Subject: [PATCH] decode keystore to project folder (#186) --- action/steps/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action/steps/build.sh b/action/steps/build.sh index 7af49397..443d3a24 100755 --- a/action/steps/build.sh +++ b/action/steps/build.sh @@ -68,7 +68,7 @@ fi if [[ -z $ANDROID_KEYSTORE_NAME || -z $ANDROID_KEYSTORE_BASE64 ]]; then echo "Not creating Android keystore." else - echo "$ANDROID_KEYSTORE_BASE64" | base64 --decode > "$ANDROID_KEYSTORE_NAME" + echo "$ANDROID_KEYSTORE_BASE64" | base64 --decode > "$UNITY_PROJECT_PATH/$ANDROID_KEYSTORE_NAME" echo "Created Android keystore." fi