feat: add step to restore debug keystore in Android build workflow

This commit is contained in:
2026-02-27 22:16:19 +05:00
parent a1849eb558
commit 507c26d3c6

View File

@@ -65,6 +65,11 @@ jobs:
echo "ANDROID_HOME=$ANDROID_HOME" >> $GITHUB_ENV echo "ANDROID_HOME=$ANDROID_HOME" >> $GITHUB_ENV
echo "ANDROID_SDK_ROOT=$ANDROID_HOME" >> $GITHUB_ENV echo "ANDROID_SDK_ROOT=$ANDROID_HOME" >> $GITHUB_ENV
- name: Restore debug keystore
run: |
mkdir -p ~/.android
echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > ~/.android/debug.keystore
- name: Create google-services.json - name: Create google-services.json
run: echo "${{ secrets.GOOGLE_SERVICES_JSON }}" | base64 -d > app/google-services.json run: echo "${{ secrets.GOOGLE_SERVICES_JSON }}" | base64 -d > app/google-services.json