compose/.drone/.drone.yml

19 lines
204 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}
- echo $${DRONE_TAG}}
2020-07-29 19:14:56 +00:00
2020-07-29 19:09:10 +00:00
...