fApp/.gitea/workflows/android.yml
Flummi 4d81327ba4
Some checks failed
Flutter Schmutter / build (push) Failing after 6s
without cache
2025-06-03 12:13:07 +02:00

30 lines
532 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-0.2.pre
channel: master
- name: clean flutter cache
run: flutter clean
- name: install deps
run: flutter pub get
- name: build apk
run: flutter build apk --release