Update README.md #27
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: Android Release | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: "12.x" | |
cache: 'gradle' | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.10.2" | |
channel: 'stable' | |
cache: true | |
- name: Get dependencies | |
run: flutter --disable-telemetry && flutter pub get && flutter doctor || true | |
- name: Get dependencies example app | |
working-directory: example | |
run: flutter pub get | |
- name: Start release build | |
working-directory: example | |
run: flutter build apk --release | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Android - Release | |
path: example/build/app/outputs/apk/release/app-release.apk | |