Update Gradle distribution to version 7.4 #2
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: "Build IOS & Android" | |
on: | |
push: | |
branches: | |
- test | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- run: flutter --version | |
- run: flutter doctor | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Check Java Version | |
run: java -version | |
- name: Build Android | |
run: flutter build apk --release |