go-paste/.drone.yml
2020-08-17 12:13:03 -06:00

30 lines
400 B
YAML

---
kind: pipeline
type: exec
name: default
platform:
os: linux
arch: amd64
steps:
- name: Setup
commands:
- make setup
- name: Test
commands:
- make test
- name: Build Release
commands:
- cd debian && make release
- cd debian && make build
- cd debian && make copy
- cd debian && make deploy
when:
target:
- production
event:
- promote
...