Initial commit
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Joe Groocock 2018-03-16 02:31:56 +00:00 committed by Joe Groocock
commit 7fbf64a4cb
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

23
.drone.yml Normal file
View 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=
...