Bump percent_indicator from 4.2.3 to 4.2.4 (#314) #222
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |