From caea376c00fa2041937e3e985816c89f6db5399d Mon Sep 17 00:00:00 2001 From: Ismaillat Date: Fri, 18 Oct 2024 05:15:18 +0200 Subject: [PATCH] fix: add google-service.json in the android-buil file --- .github/workflows/android-build.yml | 6 ++++++ 1 file changed, 6 insertions(+) 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