mlp-server-tools/.drone.yml

29 lines
639 B
YAML
Raw Normal View History

2019-06-27 12:12:13 +00:00
kind: pipeline
name: default
steps:
- name: build_draftbot
image: golang
commands:
2019-06-27 12:15:57 +00:00
- CGO_ENABLED=0 GOPROXY=https://modules.fromouter.space go build -o release/draftbot ./draftbot
2019-06-27 12:12:13 +00:00
volumes:
- name: gopath
path: /go
- name: publish_draftbot
image: plugins/docker
settings:
auto_tag: true
dockerfile: Dockerfile.publish
build_args: MODULE_PATH=draftbot
repo: hamcha/draftbot
target: final
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event:
- push
- tag
branch: master