-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
78 lines (68 loc) · 1.25 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
78
---
kind: pipeline
type: docker
name: linux-amd64
platform:
arch: amd64
os: linux
steps:
- name: golangci-lint
image: golangci/golangci-lint:v1.27.0
commands:
- golangci-lint run
- name: test
image: golang:1.17
commands:
- go test ./...
- name: markdown
image: 06kellyjac/markdownlint-cli
commands:
- markdownlint .
- name: linelint
image: fernandrone/linelint:latest
pull: always
- name: build
image: golang:1.17
commands:
- make build
depends_on:
- golangci-lint
- test
- markdown
- linelint
when:
event:
- push
- name: dockerhub
image: plugins/docker
settings:
repo: fernandrone/grace
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
depends_on:
- golangci-lint
- test
- markdown
- linelint
when:
event:
- tag
- name: release
image: golang:1.17
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- curl -sSL https://git.io/goreleaser | bash
when:
event:
- tag
trigger:
event:
- push
- tag
image_pull_secrets:
- dockerconfigjson