ci: copy PROD google-services.json to all release build types

releaseMarket and releaseGithub build types need their own copy
of the production google-services.json. Without this, the
google-services plugin falls back to the dev config in app/,
causing Google Sign-In to fail on release builds.
This commit is contained in:
2026-02-21 23:07:15 +03:00
parent 233d06da12
commit 11fd0a5d10
+10
View File
@@ -161,6 +161,16 @@ jobs:
filename: google-services.json
destination-path: ./app/src/release/
- name: 📂 Copy PROD Google Services to releaseMarket
run: |
mkdir -p ./app/src/releaseMarket
cp ./app/src/release/google-services.json ./app/src/releaseMarket/google-services.json
- name: 📂 Copy PROD Google Services to releaseGithub
run: |
mkdir -p ./app/src/releaseGithub
cp ./app/src/release/google-services.json ./app/src/releaseGithub/google-services.json
- name: 🔧 Install dependencies
uses: ./.github/workflows/install/