generated from pangum/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
54 lines (43 loc) · 927 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
47
48
49
50
51
52
53
54
kind: pipeline
type: docker
name: 发布
clone:
disable: true
environment:
CHANGELOG_TAG_OUTPUT: CHANGELOG.tag.md
steps:
- name: 代码
image: ccr.ccs.tencentyun.com/dronestock/git
- name: 编译
image: ccr.ccs.tencentyun.com/pangum/drone
volumes:
- name: go
path: /var/lib/go
settings:
compress:
enabled: false
- name: 改变
image: ccr.ccs.tencentyun.com/dronestock/changelog
when:
event:
- tag
settings:
output: $${CHANGELOG_TAG_OUTPUT}
tag: $${DRONE_TAG}
- name: 发布
image: ccr.ccs.tencentyun.com/dronestock/github
when:
event:
- tag
environment:
TOKEN:
from_secret: token_github
settings:
release:
tag: $${DRONE_TAG}
token: $${TOKEN}
body: expr:file("$${CHANGELOG_TAG_OUTPUT}")
volumes:
- name: go
host:
path: /var/lib/cache/go