Skip to content

Update build workflow #7

Update build workflow

Update build workflow #7

Workflow file for this run

name: "Build Android"
on:
pull_request:
branches:
- main
push:
branches:
- test-apk
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Up Java
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Flutter analyze
run: flutter analyze
- name: Get dependencies
run: flutter pub get
- name: Build Android
run: flutter build apk --release