lineageos-ota-server/.drone.yml
Steven Polley 9b3302dcf3
Some checks failed
continuous-integration/drone/push Build is failing
move from deadbeef.codes to code.stevenpolley.net
2024-06-28 11:55:35 -06:00

26 lines
442 B
YAML

kind: pipeline
name: default
workspace:
base: /go
path: src/code.stevenpolley.net/steven/lineageos-ota-server
steps:
- name: build server
image: golang
pull: always
environment:
GOOS: linux
GOARCH: amd64
CGO_ENABLED: 0
commands:
- go version
- go get
- go build -a -ldflags '-w'
- name: package in docker container
image: plugins/docker
settings:
repo: registry.stevenpolley.net/lineageos-ota-server