From 1eef3f120119e3bec9c9e51c81ce6e071b31f0ab Mon Sep 17 00:00:00 2001 From: Hamcha Date: Thu, 27 Jun 2019 14:17:23 +0200 Subject: [PATCH] Actually use gomod --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 710e0d9..322b542 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,7 +5,9 @@ steps: - name: build_draftbot image: golang commands: - - CGO_ENABLED=0 GOPROXY=https://modules.fromouter.space go build -o release/draftbot ./draftbot + - cd ./draftbot + - GOPROXY=https://modules.fromouter.space go mod download + - CGO_ENABLED=0 go install . volumes: - name: gopath path: /go