OrbitalBeat/.drone.yml

13 lines
164 B
YAML
Raw Normal View History

2022-01-17 09:18:22 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: backend
2022-08-04 13:42:17 +00:00
image: golang:1.19-alpine
2022-01-17 09:18:22 +00:00
commands:
2022-01-18 10:56:39 +00:00
- GOAMD64=v2 go build -v -o orbeat .
2022-01-17 09:18:22 +00:00
...