35 lines
808 B
YAML
35 lines
808 B
YAML
name: Flutter build example
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build_android:
|
|
name: Build example for Android
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- name: Setup Java
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '17'
|
|
- name: Install Flutter
|
|
uses: subosito/flutter-action@v2
|
|
- name: Disable analytics
|
|
run: flutter config --no-analytics
|
|
- name: Flutter pub get
|
|
run: flutter pub get
|
|
- name: Flutter build appbundle
|
|
run: |
|
|
cd example
|
|
flutter build appbundle --release
|