schnutibox/.drone.yml
Marvin Steadfast 9c9ed4e94a
All checks were successful
continuous-integration/drone/push Build is passing
Revert "ci: moves drone config to build dir"
This reverts commit 62e1ee822a.
2021-05-10 12:47:48 +02:00

53 lines
842 B
YAML

---
kind: pipeline
name: default
steps:
- name: tags
image: alpine/git
commands:
- git fetch --tags
- name: lint
image: golangci/golangci-lint:latest
commands:
- make install-tools
- make lint
depends_on:
- tags
- name: test
image: golang:latest
commands:
- make test
depends_on:
- tags
- name: build
image: goreleaser/goreleaser:v0.162.0
commands:
- make build
depends_on:
- tags
- lint
- test
when:
event:
exclude:
- tag
- name: release
image: goreleaser/goreleaser:v0.162.0
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- goreleaser release --rm-dist
depends_on:
- tags
- lint
- test
when:
event:
- tag