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

31 lines
569 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
- run: flutter --version
- name: clean flutter cache
run: flutter clean
- name: install deps
run: flutter pub get
- name: build apk
run: flutter build apk --release