Skip to content

Create apks

Create apks #20

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Flutter Tasks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.4'
channel: 'stable'
- run: flutter clean
- run: flutter pub get
- run: flutter analyze
- run: flutter build apk --debug
#- run: flutter test