ynab-portfolio-monitor/.drone.yml
Steven Polley 3ae78f3b32
All checks were successful
continuous-integration/drone/push Build is passing
move from deadbeef.codes to stevenpolley.net
2024-06-28 11:59:31 -06:00

28 lines
535 B
YAML

kind: pipeline
name: default
workspace:
base: /go
path: src/code.stevenpolley.net/steven/ynab-portfolio-monitor
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'
- cp /usr/local/go/lib/time/zoneinfo.zip .
- cp /etc/ssl/certs/ca-certificates.crt .
- name: package in docker container
image: plugins/docker
settings:
repo: registry.stevenpolley.net/ynab-portfolio-monitor