OpenMediacenterMobileFlutter/.gitlab-ci.yaml

18 lines
304 B
YAML
Raw Normal View History

image: cirrusci/flutter
stages:
- build
flutter_build_android: #Job name
stage: build # kind of job
before_script:
- flutter packages get
- flutter clean
script:
- flutter build apk
artifacts:
paths:
- build/app/outputs/apk/release/app-release.apk
tags:
- flutter