fApp/.gitea/workflows/android.yml
Flummi bc2fb15b39
Some checks failed
Flutter Schmutter / build (push) Failing after 1m25s
hmm
2025-06-03 11:51:15 +02:00

27 lines
467 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:
channel: 'stable'
- run: flutter --version
- name: install deps
run: flutter pub get
- name: build apk
run: flutter build apk --release