commit 7fbf64a4cb02ab4566acca0a1cf2d6d703b2c432 Author: Joe Groocock Date: Fri Mar 16 02:31:56 2018 +0000 Initial commit diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..4624533 --- /dev/null +++ b/.drone.yml @@ -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= + +...