schnutibox/.drone.yml

78 lines
1.3 KiB
YAML
Raw Permalink Normal View History

---
kind: pipeline
name: default
steps:
- name: tags
image: alpine/git
commands:
- git fetch --tags
- name: lint
2021-05-10 13:25:45 +02:00
image: golangci/golangci-lint:v1.39.0
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
2021-05-10 13:14:15 +02:00
volumes:
- name: dockersock
path: /var/run
environment:
GITHUB_TOKEN:
from_secret: github_token
2021-05-10 13:14:15 +02:00
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: github_token
DOCKER_REGISTRY: ghcr.io
commands:
2021-05-10 13:14:15 +02:00
- sleep 5
- >
echo $DOCKER_PASSWORD |
docker login $DOCKER_REGISTRY -u $DOCKER_USERNAME --password-stdin
- goreleaser release --rm-dist
depends_on:
- tags
- lint
- test
2021-05-10 13:25:45 +02:00
- docker
when:
event:
- tag
2021-05-10 13:14:15 +02:00
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}