Add push trigger to Drone CI pipeline
Build on every push to master branch in addition to nightly cron builds.
This commit is contained in:
parent
218781e038
commit
aad9bdd950
1 changed files with 8 additions and 2 deletions
10
.drone.yml
10
.drone.yml
|
|
@ -5,9 +5,12 @@ timeout: 30m
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
|
- push
|
||||||
- cron
|
- cron
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
cron:
|
cron:
|
||||||
- nightly # only daily builds; don't build on push
|
- nightly
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build frontend image
|
- name: Build frontend image
|
||||||
|
|
@ -35,9 +38,12 @@ timeout: 30m
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
|
- push
|
||||||
- cron
|
- cron
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
cron:
|
cron:
|
||||||
- nightly # only daily builds; don't build on push
|
- nightly
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build backend API image
|
- name: Build backend API image
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue