jellyfixer/.drone.yml
Marvin Steadfast 30b9d70be2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
test: working on ci
2020-12-03 12:31:51 +01:00

47 lines
907 B
YAML

---
kind: pipeline
name: default
steps:
- name: fetch
image: docker:git
commands:
- git fetch --tags
- name: lint
image: golangci/golangci-lint:latest
commands:
- make lint
- name: release
image: goreleaser/goreleaser:latest
volumes:
- name: dockersock
path: /var/run
environment:
GITEA_TOKEN:
from_secret: gitea_token
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_REGISTRY: quay.io
commands:
- sleep 5
- echo $DOCKER_PASSWORD | docker login $DOCKER_REGISTRY -u $DOCKER_USERNAME --password-stdin
- goreleaser release
when:
event: tag
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}