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:
Viktor Barzin 2026-02-01 19:56:00 +00:00
parent 218781e038
commit aad9bdd950

View file

@ -5,9 +5,12 @@ timeout: 30m
trigger:
event:
- push
- cron
branch:
- master
cron:
- nightly # only daily builds; don't build on push
- nightly
steps:
- name: Build frontend image
@ -35,9 +38,12 @@ timeout: 30m
trigger:
event:
- push
- cron
branch:
- master
cron:
- nightly # only daily builds; don't build on push
- nightly
steps:
- name: Build backend API image