diff --git a/.github/workflows/cd-android.yml b/.github/workflows/cd-android.yml index 2122bee3..4088fab7 100644 --- a/.github/workflows/cd-android.yml +++ b/.github/workflows/cd-android.yml @@ -53,10 +53,6 @@ jobs: distribution: temurin java-version: 17 - - name: Decode Keystore - run: | - echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > release.keystore - - name: Setup Node.js uses: actions/setup-node@v4 with: @@ -75,6 +71,8 @@ jobs: - name: Build AAB run: | cd android + echo "${{ secrets.ANDROID_GOOGLE_SERVICES_JSON }}" | base64 -d > app/google-services.json + echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > release.keystore chmod +x gradlew ./gradlew bundleRelease \ -Pandroid.injected.signing.store.file=release.keystore \