mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-01-31 17:50:40 +00:00
added firebase.json to secrets
This commit is contained in:
parent
2610e6aff6
commit
3217ba45a6
3 changed files with 12 additions and 8 deletions
6
.github/workflows/build_apk.yml
vendored
6
.github/workflows/build_apk.yml
vendored
|
@ -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:
|
||||
|
|
10
.github/workflows/build_ipa.yml
vendored
10
.github/workflows/build_ipa.yml
vendored
|
@ -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:
|
||||
|
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -64,4 +64,6 @@ ios/Runner/GoogleService-Info.plist
|
|||
coverage/
|
||||
test/coverage_helper_test.dart
|
||||
**/failures/*.png
|
||||
screenshots/generated/raw/
|
||||
screenshots/generated/raw/
|
||||
|
||||
firebase.json
|
Loading…
Reference in a new issue