fix(deps): update dependency com.android.tools.build:gradle to v8 - autoclosed #288
Workflow file for this run
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: Flutter | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
flutter-channel: [ 'stable', 'beta' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter-channel }} | |
- name: Print Dart SDK version | |
run: dart --version | |
- name: Print Flutter SDK version | |
run: flutter --version | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Format code | |
if: ${{ matrix.flutter-channel == 'stable' }} | |
run: flutter format lib --set-exit-if-changed | |
- name: Analyze | |
if: ${{ matrix.flutter-channel == 'stable' }} | |
run: flutter analyze lib | |
- name: Gen code | |
run: flutter packages pub run build_runner build --delete-conflicting-outputs | |
- name: Build Debug APK | |
run: flutter build apk --debug --no-shrink | |
- name: Upload APK | |
if: ${{ matrix.flutter-channel == 'stable' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: app-${{ matrix.flutter-channel }} | |
path: build/app/outputs/apk/debug/app-debug.apk | |