Local testing

This commit is contained in:
2023-08-05 12:41:08 +01:00
parent 7d9d8f3daf
commit ce57f24b3f

View File

@@ -121,15 +121,16 @@ commands:
name: Setup keystore name: Setup keystore
command: | command: |
echo "$BASE64_KEYSTORE" | base64 --decode > "$PWD/app/keystore.jks" 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: - run:
name: Setup playstore key name: Setup playstore key
command: | command: |
echo "$GOOGLE_PLAY_KEY" > "google-play-key.json" 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: - run:
name: Run fastlane command to deploy to playstore name: Run fastlane command to deploy to playstore
command: | command: |