butler/build/ci/.drone.yml
Fedorov Vladimir 2c9ac6b1ce
All checks were successful
continuous-integration/drone/push Build is passing
update drone pipeline
2023-08-14 03:10:45 +07:00

28 lines
449 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
pull: if-not-exists
image: golang:1.20
commands:
- go test ./...
- name: build
pull: if-not-exists
image: golang:1.20
commands:
- GOOS=linux GOARCH=amd64 go build -o butler cmd/butler/main.go
# TODO:
# scp bin, Dockerfile, docker-compose
# create .env from secrets
# run migrations
# restart container
trigger:
event:
- push