Separate monthly cron and explicit promote
This commit is contained in:
parent
0aa68719bc
commit
adff3b9820
1 changed files with 30 additions and 1 deletions
31
.drone.yml
31
.drone.yml
|
@ -29,10 +29,38 @@ name: build and publish
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
- cron
|
|
||||||
- promote
|
- promote
|
||||||
target:
|
target:
|
||||||
- production
|
- production
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: docker build
|
||||||
|
image: plugins/docker
|
||||||
|
environment:
|
||||||
|
REVISION: ${DRONE_COMMIT_SHA}
|
||||||
|
CREATED: ${DRONE_BUILD_CREATED}
|
||||||
|
SOURCE_URL: ${DRONE_GIT_HTTP_URL}
|
||||||
|
settings:
|
||||||
|
purge: true
|
||||||
|
username:
|
||||||
|
from_secret: dockerhub_user
|
||||||
|
password:
|
||||||
|
from_secret: dockerhub_key
|
||||||
|
repo: varakh/hetzner-storagebox-exporter
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: monhtly build and publish
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- cron
|
||||||
cron:
|
cron:
|
||||||
include:
|
include:
|
||||||
- monthly
|
- monthly
|
||||||
|
@ -53,6 +81,7 @@ steps:
|
||||||
repo: varakh/hetzner-storagebox-exporter
|
repo: varakh/hetzner-storagebox-exporter
|
||||||
tags:
|
tags:
|
||||||
- latest
|
- latest
|
||||||
|
- monthly
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- master
|
||||||
|
|
Loading…
Reference in a new issue