chore(deps): update plugin com.android.application to v8.8.0 #83
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 build android action | |
on: [pull_request] | |
jobs: | |
build: | |
name: Build Android | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: ⬇️ Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: ⚙️ Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- name: ⚙️ Install dependencies for all packages | |
run: flutter --version && flutter pub get | |
- name: ⚙️ Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: "17.x" | |
cache: 'gradle' | |
id: java | |
- name: 🔨 Build Android app | |
run: cd example && flutter build apk | |
shell: bash |