From 3217ba45a6a66e90fd2b5b8cba8b6ee7d5dc7371 Mon Sep 17 00:00:00 2001 From: Vadim <44135514+vodemn@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:17:36 +0100 Subject: [PATCH] added firebase.json to secrets --- .github/workflows/build_apk.yml | 6 ++++-- .github/workflows/build_ipa.yml | 10 +++++----- .gitignore | 4 +++- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_apk.yml b/.github/workflows/build_apk.yml index 6335bee..88b6347 100644 --- a/.github/workflows/build_apk.yml +++ b/.github/workflows/build_apk.yml @@ -100,8 +100,10 @@ jobs: - name: Restore google-services.json run: bash .github/scripts/restore_from_base64.sh "${{ secrets.GOOGLE_SERVICES_JSON_ANDROID }}" "android/app/google-services.json" - - name: Restore firebase_options.dart - run: bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_OPTIONS }}" "lib/firebase_options.dart" + - name: Setup Firebase + run: | + bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_OPTIONS }}" "lib/firebase_options.dart" + bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_JSON }}" "firebase.json" - name: Restore constants.dart env: diff --git a/.github/workflows/build_ipa.yml b/.github/workflows/build_ipa.yml index 65d3fc7..8a4db0a 100644 --- a/.github/workflows/build_ipa.yml +++ b/.github/workflows/build_ipa.yml @@ -92,11 +92,11 @@ jobs: - name: Restore ExportOptions.plist run: bash .github/scripts/restore_from_base64.sh "${{ secrets.APP_STORE_EXPORT_OPTIONS }}" "ios/Runner/ExportOptions.plist" - - name: Restore firebase_app_id_file.json - run: bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_APP_ID_FILE }}" "ios/firebase_app_id_file.json" - - - name: Restore firebase_options.dart - run: bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_OPTIONS }}" "lib/firebase_options.dart" + - name: Setup Firebase + run: | + bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_APP_ID_FILE }}" "ios/firebase_app_id_file.json" + bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_OPTIONS }}" "lib/firebase_options.dart" + bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_JSON }}" "firebase.json" - name: Restore constants.dart env: diff --git a/.gitignore b/.gitignore index 92e2b83..87d12d9 100644 --- a/.gitignore +++ b/.gitignore @@ -64,4 +64,6 @@ ios/Runner/GoogleService-Info.plist coverage/ test/coverage_helper_test.dart **/failures/*.png -screenshots/generated/raw/ \ No newline at end of file +screenshots/generated/raw/ + +firebase.json \ No newline at end of file