jsonnet-compose/.drone/.drone.yml

26 lines
259 B
YAML
Raw Normal View History

2020-07-30 06:05:03 +00:00
---
kind: pipeline
type: docker
name: test pipe
platform:
os: linux
arch: amd64
steps:
- name: step
image: alpine
commands:
- echo hello
- echo $${DRONE_COMMIT}
- echo $${DRONE_TAG}
when:
event:
- tag
trigger:
event:
- tag
...