27 lines
473 B
YAML
27 lines
473 B
YAML
name: Flutter Schmutter
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: setup flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
flutter-version: 3.33.0
|
|
- run: flutter --version
|
|
|
|
- name: install deps
|
|
run: flutter pub get
|
|
|
|
- name: build apk
|
|
run: flutter build apk --release
|