From ce57f24b3f82de13e62f1513f79889799c9552e6 Mon Sep 17 00:00:00 2001 From: hmalik144 Date: Sat, 5 Aug 2023 12:41:08 +0100 Subject: [PATCH] Local testing --- .circleci/config.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fcbf101..634c19c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -121,15 +121,16 @@ commands: name: Setup keystore command: | echo "$BASE64_KEYSTORE" | base64 --decode > "$PWD/app/keystore.jks" + FILE=$PWD/app/keystore.jks + if [[ -f "$FILE" ]]; then + echo "$FILE exists." + else + echo "$FILE does not exist." + fi - run: name: Setup playstore key command: | echo "$GOOGLE_PLAY_KEY" > "google-play-key.json" - - run: - name: file tree - command: | - cd app - ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - run: name: Run fastlane command to deploy to playstore command: |