-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.drone.yml
More file actions
37 lines (37 loc) · 873 Bytes
/
.drone.yml
File metadata and controls
37 lines (37 loc) · 873 Bytes
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
pipeline:
install:
image: node:9
commands:
- make install
when:
branch: [develop, master]
lint:
image: node:9
commands:
- make lint
when:
branch: [develop, master]
test:
image: node:9
commands:
- make test
when:
branch: [develop, master]
build-kusd-zygote:
image: node:9
commands:
- export KOWALA_NETWORK="kusd-zygote"
- yarn run drone:build
when:
branch: [develop]
upload-kusd-zygote:
image: plugins/s3
acl: public-read
region: "us-east-1"
bucket: "wallet.zygote.kowala.io"
source: dist/**/*
strip_prefix: dist
target: /
encryption: AES256
when:
branch: [develop]