From 0ac15da3e76628e9ccd7e0498ed03b21d6792f21 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sun, 17 Feb 2019 20:29:22 +0800 Subject: [PATCH] feat: add Signature for drone config --- .drone.jsonnet | 6 ++++++ .drone.yml | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/.drone.jsonnet b/.drone.jsonnet index b746d63..cf8725e 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -267,6 +267,11 @@ local PipelineNotifications(os='linux', arch='amd64', depends_on=[]) = { }, }; +local Signature = { + kind: 'signature', + hmac: '9a4dcc3659b6f2cb98486e40e4cb0c16d6fc19ad783d3bca13d30c476daf8213', +}; + [ PipelineTesting, PipelineBuild(name, 'linux', 'amd64'), @@ -279,4 +284,5 @@ local PipelineNotifications(os='linux', arch='amd64', depends_on=[]) = { 'linux-arm', 'release-binary', ]), + Signature, ] diff --git a/.drone.yml b/.drone.yml index 4d7dbe5..6b0a5cb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -385,4 +385,8 @@ depends_on: - linux-arm - release-binary +--- +kind: signature +hmac: 9a4dcc3659b6f2cb98486e40e4cb0c16d6fc19ad783d3bca13d30c476daf8213 + ...