Add Ci task to build a debug app on branches that are not master and build a fdroid signed version only when building on master

Took 5 minutes
This commit is contained in:
Marcel 2020-01-03 12:54:42 +00:00
parent 646f98fb15
commit c2dad42da4
1 changed files with 13 additions and 0 deletions

View File

@ -41,6 +41,19 @@ build_android_fdroid:
when: on_success
paths:
- build/app/outputs/apk/release/app-release.apk
only:
- master
build_android_debug:
stage: coverage
script:
- flutter build apk --debug
artifacts:
when: on_success
paths:
- build/app/outputs/apk/release/app-debug.apk
except:
- master
pages:
stage: publish