feat: add Signature for drone config

This commit is contained in:
Bo-Yi Wu 2019-02-17 20:29:22 +08:00
parent b339fb0238
commit 0ac15da3e7
2 changed files with 10 additions and 0 deletions

View File

@ -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,
]

View File

@ -385,4 +385,8 @@ depends_on:
- linux-arm
- release-binary
---
kind: signature
hmac: 9a4dcc3659b6f2cb98486e40e4cb0c16d6fc19ad783d3bca13d30c476daf8213
...