Initial commit

This commit is contained in:
2020-01-12 22:17:01 +00:00
committed by Joe Groocock
commit 9864c9bbd9

23
.drone.yml Normal file

@ -0,0 +1,23 @@
---
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=
...