Skip to content

New Firebase analytics event: start_report #242

New Firebase analytics event: start_report

New Firebase analytics event: start_report #242

Workflow file for this run

name: Build app
on:
pull_request:
push:
branches: ["main"]
jobs:
android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: kuhnroyal/flutter-fvm-config-action/setup@v3
- name: Get Dependencies
run: flutter pub get
- name: Decode google-services.json
run: echo $GOOGLE_SERVICES_JSON | base64 --decode > android/app/google-services.json
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON_ANDROID_BASE64 }}
- name: Build Android on debug mode
run: flutter build appbundle --debug
ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: kuhnroyal/flutter-fvm-config-action/setup@v3
- name: Decode google-services.json secrets
env:
GOOGLESERVICES_INFO_PLIST_JSON: ${{ secrets.GOOGLESERVICE_INFO_PLIST_IOS_BASE64 }}
run: |
echo $GOOGLESERVICES_INFO_PLIST_JSON | base64 --decode > ios/Runner/GoogleService-Info.plist
- run: flutter pub get
- name: Build ios
run: flutter build ios --release --no-codesign