compose/.drone/.drone.yml

26 lines
259 B
YAML
Raw Normal View History

2020-07-29 19:09:10 +00:00
---
kind: pipeline
type: docker
name: test pipe
platform:
os: linux
arch: amd64
2020-07-29 19:14:56 +00:00
steps:
- name: step
image: alpine
2020-07-29 19:19:46 +00:00
commands:
- echo hello
- echo $${DRONE_COMMIT}
2020-07-29 19:26:17 +00:00
- echo $${DRONE_TAG}
2020-07-29 19:42:03 +00:00
when:
event:
- tag
2020-07-29 19:14:56 +00:00
2020-07-29 19:35:32 +00:00
trigger:
event:
- tag
2020-07-29 19:09:10 +00:00
...