go-paste/.drone.yml

28 lines
371 B
YAML
Raw Normal View History

2020-08-17 09:40:10 -06:00
---
kind: pipeline
type: exec
name: default
platform:
os: linux
arch: amd64
steps:
- name: Setup
2020-08-17 09:45:10 -06:00
commands:
2020-08-17 09:40:10 -06:00
- make setup
- name: Test
2020-08-17 09:45:10 -06:00
commands:
2020-08-17 09:40:10 -06:00
- make test
- name: Build Release
2020-08-17 09:45:10 -06:00
commands:
2020-08-17 09:40:10 -06:00
- cd debian && make release
- cd debian && make build
- cd debian && make copy
- cd debian && make deploy
2020-08-17 12:13:03 -06:00
when:
event:
- promote
2020-08-17 09:40:10 -06:00
...