drone-docker-buildx/.drone.yml

41 lines
708 B
YAML
Raw Normal View History

2015-05-15 02:19:57 +02:00
build:
2015-10-28 02:29:46 +01:00
image: golang:1.5
environment:
- CGO_ENABLED=0
2015-05-15 02:11:26 +02:00
commands:
- make deps
- make vet
- make build
- make test
2015-05-15 02:11:26 +02:00
2015-10-28 02:29:46 +01:00
publish:
coverage:
when:
branch: master
2015-10-28 02:29:46 +01:00
docker:
username: $$DOCKER_USER
2015-10-28 02:29:46 +01:00
password: $$DOCKER_PASS
email: $$DOCKER_EMAIL
repo: plugins/drone-docker
tag: latest
2015-10-28 02:29:46 +01:00
when:
branch: master
docker:
username: $$DOCKER_USER
password: $$DOCKER_PASS
email: $$DOCKER_EMAIL
repo: plugins/drone-docker
tag: develop
when:
branch: develop
2015-10-28 02:29:46 +01:00
2015-05-15 02:11:26 +02:00
plugin:
name: Docker
desc: Build and publish images to a Docker registry
2015-05-15 02:11:26 +02:00
type: publish
image: plugins/drone-docker
labels:
- docker
- image
- container