-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
57 lines (56 loc) · 849 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
55
56
57
---
depends_on: []
kind: pipeline
name: ci
steps:
- commands:
- make build
image: zachfi/build-image
name: build
pull: always
- commands:
- make test
image: zachfi/build-image
name: test
pull: always
trigger:
ref:
- refs/heads/main
- refs/heads/dependabot/**
- refs/tags/v*
---
depends_on: []
kind: pipeline
name: main
steps:
- commands:
- make snapshot
image: zachfi/build-image
name: snapshot
pull: always
trigger:
ref:
- refs/heads/main
---
depends_on: []
kind: pipeline
name: release
steps:
- commands:
- make release
environment:
GITHUB_TOKEN:
from_secret: GITHUB_TOKEN
image: zachfi/build-image
name: release
pull: always
when:
ref:
- refs/tags/v*
trigger:
ref:
- refs/tags/v*
---
kind: signature
hmac: 2583fac510e43550e9b5be98dee1075cad937e9e3836a476cd079c650bf76723
...