go-paste/.drone.yml
2020-08-17 11:58:22 -06:00

44 lines
514 B
YAML

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