Update drone.yml to new format

This commit is contained in:
Steven Polley 2018-12-22 23:18:12 -07:00
parent cc54877d5e
commit 41b033d4f2
1 changed files with 14 additions and 17 deletions

View File

@ -1,18 +1,15 @@
workspace: kind: pipeline
base: /go name: default
path: src/deadbeef.codes/steven/mandelmapper
pipeline: steps:
build: - name: build
image: golang:latest image: golang
commands: pull: always
- go version environment:
- go get GOOS: linux
- CGO_ENABLED=0 GOOS=linux go build -ldflags '-w' GOARCH: amd64
publish: CGO_ENABLED: 0
image: plugins/docker commands:
repo: deadbeef.codes:5000/mandelmapper - go version
registry: deadbeef.codes:5000 - go get
tags: - go build -ldflags '-w'
- latest
- ${DRONE_COMMIT}