-
Notifications
You must be signed in to change notification settings - Fork 5
/
.drone.yml
77 lines (71 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
kind: pipeline
name: default
type: docker
platform:
os: linux
arch: amd64
steps:
- name: build
image: node
commands:
- npm install
- npm run build
when:
event:
- push
- tag
- name: upload-test-to-oss
image: jacie/drone-aliyun-oss
pull: always
environment:
ALIYUN_ACCESS_KEY_ID:
from_secret: aliyun_access_id
ALIYUN_SECRET_ACCESS_KEY:
from_secret: aliyun_access_secret
PLUGIN_SOURCE: ./dist
ALIYUN_BUCKET: oss://dev-tool
ALIYUN_ENDPOINT: http://oss-cn-shenzhen.aliyuncs.com
PLUGIN_TARGET: aliyun-ecs
PLUGIN_RECURSIVE: -r
PLUGIN_ACCESS: public-read
commands:
- "aliyun-oss"
when:
event:
- push
- name: deployment-to-oss
image: jacie/drone-aliyun-oss
pull: always
environment:
ALIYUN_ACCESS_KEY_ID:
from_secret: aliyun_access_id
ALIYUN_SECRET_ACCESS_KEY:
from_secret: aliyun_access_secret
PLUGIN_SOURCE: ./dist
ALIYUN_BUCKET: oss://rancher2-drivers
ALIYUN_ENDPOINT: http://oss-cn-beijing.aliyuncs.com
PLUGIN_TARGET: pandaria/ui/node-driver-aliyun/${DRONE_TAG}
PLUGIN_RECURSIVE: -r
PLUGIN_ACCESS: public-read
commands:
- "aliyun-oss"
when:
event:
- tag
- name: github_binary_prerelease
image: plugins/github-release
settings:
api_key:
from_secret: github_token
checksum:
- sha256
files:
- dist/*
prerelease: true
title: "Pre-release ${DRONE_TAG}"
when:
event:
- tag
node:
instance: agent-amd64