OrbitalBeat/.drone.yml

13 lines
166 B
YAML
Raw Normal View History

2022-01-17 09:18:22 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: backend
2022-06-04 18:02:29 +00:00
image: golang:1.18-bullseye
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
...