OrbitalBeat/.drone.yml

13 lines
155 B
YAML
Raw Normal View History

2022-01-17 09:18:22 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: backend
2022-01-18 10:40:43 +00:00
image: golang:1.18-rc-bullseye
2022-01-17 09:18:22 +00:00
commands:
- go build -o orbeat .
...