forked from TheHive-Project/Cortex-Analyzers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.drone.yml
46 lines (42 loc) · 1.19 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
kind: pipeline
name: default
steps:
- name: build analyzers for release
image: thehiveproject/cortex-worker-builder
settings:
worker_path: analyzers
namespace: cortexneurons
user: {from_secret: docker_username}
password: {from_secret: docker_password}
stable: true
when:
event: [tag]
- name: build responders for release
image: thehiveproject/cortex-worker-builder
settings:
worker_path: responders
namespace: cortexneurons
user: {from_secret: docker_username}
password: {from_secret: docker_password}
stable: true
when:
event: [tag]
- name: build snapshot analyzers
image: thehiveproject/cortex-worker-builder
settings:
worker_path: analyzers
namespace: cortexneurons
user: {from_secret: docker_username}
password: {from_secret: docker_password}
when:
event: {exclude: [tag]}
- name: build snapshot responders
image: thehiveproject/cortex-worker-builder
settings:
worker_path: responders
namespace: cortexneurons
user: {from_secret: docker_username}
password: {from_secret: docker_password}
when:
event: {exclude: [tag]}