drone-test/.drone.yml
Joe Groocock 7fbf64a4cb
Some checks failed
continuous-integration/drone/push Build is failing
Initial commit
2019-09-15 12:12:55 +01:00

24 lines
272 B
YAML

---
kind: pipeline
name: one
steps:
- name: build
image: alpine
commands:
- env | grep TOKEN=
- env | sort | grep -v TOKEN=
---
kind: pipeline
name: two
steps:
- name: build
image: alpine
commands:
- env | grep TOKEN=
- env | sort | grep -v TOKEN=
...