deadbeef.codes-publicfilese.../.drone.yml

25 lines
436 B
YAML
Raw Permalink Normal View History

2019-01-06 03:09:32 +00:00
kind: pipeline
name: default
workspace:
base: /go
path: src/code.stevenpolley.net/steven/deadbeef.codes-publicfileserver
2019-01-06 03:09:32 +00:00
steps:
- name: build
image: golang
pull: always
environment:
GOOS: linux
GOARCH: amd64
CGO_ENABLED: 0
commands:
- go version
- go get
- go build -a -ldflags '-w'
- name: publish
image: plugins/docker
settings:
repo: registry.stevenpolley.net/deadbeef.codes-publicfileserver
2019-11-02 17:50:31 +00:00