diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index 7a7391102..b9e1c7e97 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -30,6 +30,12 @@ jobs: run: | chmod +x ./gradlew + - name: Decode secrets + env: + GOOGLE_SERVICES: ${{ secrets.GOOGLE_SERVICES }} + run: | + echo "$GOOGLE_SERVICES" | base64 --decode > ./app/google-services.json + - name: Build APK run: ./gradlew assembleRelease