kind: pipeline type: docker name: default steps: - name: build image: golang commands: - CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' . - go test ./... - name: publish image: plugins/docker settings: auto_tag: true repo: garionion/drone-yaml-server username: from_secret: docker_username password: from_secret: docker_password debug: true