-
Notifications
You must be signed in to change notification settings - Fork 28
/
.drone.yml
46 lines (42 loc) · 913 Bytes
/
.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
build:
image: node:0.10
commands:
- cd hubots/hubot-baronbogo
- npm -d install
- npm test
- cd ../hubot-gitsy
- npm -d install
- npm test
publish:
npm:
when:
event: tag
username: $$NPM_USERNAME
password: $$NPM_PASSWORD
email: $$NPM_EMAIL
folder: hubots/hubot-baronbogo
npm:
when:
event: tag
username: $$NPM_USERNAME
password: $$NPM_PASSWORD
email: $$NPM_EMAIL
folder: hubots/hubot-gitsy
docker:
when:
event: tag
username: $$DOCKER_USERNAME
password: $$DOCKER_PASSWORD
email: $$DOCKER_EMAIL
repo: rocketchat/hubot-baronbogo
file: hubots/hubot-baronbogo/Dockerfile
tag: $$TAG
docker:
when:
event: tag
username: $$DOCKER_USERNAME
password: $$DOCKER_PASSWORD
email: $$DOCKER_EMAIL
repo: rocketchat/hubot-gitsy
file: hubots/hubot-gitsy/Dockerfile
tag: $$TAG