use gradle version #19
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 Example | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/flutter-example.yml' | |
- 'example/**' | |
- '!example/README.md' | |
pull_request: | |
branches: [ main, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- '.github/workflows/flutter-example.yml' | |
- 'example/**' | |
- '!example/README.md' | |
defaults: | |
run: | |
working-directory: example | |
jobs: | |
build-android: | |
name: Build Android demo | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
flutter-version: ['2.8.1', '3.0.4'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Install Flutter ${{ matrix.flutter-version }} | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ matrix.flutter-version }} | |
- uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-version: 8.2 | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Install dependencies | |
run: ./gradlew --version | |
working-directory: example/android | |
- name: Build | |
run: flutter build apk | |
build-ios: | |
name: Build iOS demo | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
flutter-version: ['2.8.1', '3.0.4'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Flutter ${{ matrix.flutter-version }} | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ matrix.flutter-version }} | |
architecture: x64 | |
- name: Update Cocoapods repo | |
run: pod repo update | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Build | |
run: flutter build ios --release --no-codesign |