mlp-server-tools/.drone.yml
Hamcha 1eef3f1201
All checks were successful
continuous-integration/drone/push Build is passing
Actually use gomod
2019-06-27 14:17:36 +02:00

31 lines
No EOL
658 B
YAML

kind: pipeline
name: default
steps:
- name: build_draftbot
image: golang
commands:
- cd ./draftbot
- GOPROXY=https://modules.fromouter.space go mod download
- CGO_ENABLED=0 go install .
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