Only trigger main build pipeline for push and pull requests #noissue
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
e9929bd3c3
commit
3e7bc379f1
1 changed files with 6 additions and 1 deletions
|
@ -3,6 +3,12 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: build
|
name: build
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
include:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: cirrusci/flutter:3.7.7
|
image: cirrusci/flutter:3.7.7
|
||||||
|
@ -13,4 +19,3 @@ steps:
|
||||||
- flutter packages pub run build_runner build --delete-conflicting-outputs
|
- flutter packages pub run build_runner build --delete-conflicting-outputs
|
||||||
- flutter analyze --no-pub --no-current-package lib/
|
- flutter analyze --no-pub --no-current-package lib/
|
||||||
- flutter build apk --debug
|
- flutter build apk --debug
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue