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:
parent
646f98fb15
commit
c2dad42da4
|
@ -41,6 +41,19 @@ build_android_fdroid:
|
||||||
when: on_success
|
when: on_success
|
||||||
paths:
|
paths:
|
||||||
- build/app/outputs/apk/release/app-release.apk
|
- 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:
|
pages:
|
||||||
stage: publish
|
stage: publish
|
||||||
|
|
Loading…
Reference in a new issue