commit 48a1b15176ad8d6dca30df4bd85d367fd5ae1dc9 Author: Joe Groocock Date: Sun Jan 12 22:17:01 2020 +0000 Initial commit This is a multi-line commit message diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..ced8a3b --- /dev/null +++ b/.drone.yml @@ -0,0 +1,27 @@ +--- +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= + +--- +kind: signature +hmac: e6c682e2e2138497c08364b4533938026f869d767e5f7013f6c72f8e4680503c + +...