go-paste/.drone.yml
2020-08-17 12:40:32 -06:00

46 lines
511 B
YAML

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