From 5bfb3318cbba00ebe89009bc7a962567583095ab Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 26 Jan 2021 13:29:26 +0100 Subject: [PATCH] add release step --- .drone.star | 45 +++++++++++++++++++++++++++++++++++++-------- .gitignore | 1 + 2 files changed, 38 insertions(+), 8 deletions(-) diff --git a/.drone.star b/.drone.star index 0ee6916..bdba942 100644 --- a/.drone.star +++ b/.drone.star @@ -7,7 +7,7 @@ def main(ctx): linux(ctx, "arm"), ] - after = manifest(ctx) + notification(ctx) + after = manifest(ctx) + release(ctx) + notification(ctx) for b in before: for s in stages: @@ -206,6 +206,35 @@ def manifest(ctx): }, }] +def release(ctx): + return [{ + "kind": "pipeline", + "type": "docker", + "name": "release", + "steps": [ + { + "name": "release", + "image": "plugins/github-release", + "settings": { + "api_key": { + "from_secret": "github_token", + }, + "note": "CHANGELOG.md", + "overwrite": True, + "title": ctx.build.ref.replace("refs/tags/", ""), + }, + } + ], + "depends_on": [ + "manifest", + ], + "trigger": { + "ref": [ + "refs/tags/**", + ], + }, + }] + def notification(ctx): return [{ "kind": "pipeline", @@ -216,18 +245,18 @@ def notification(ctx): }, "steps": [ { - 'name': 'notify', - 'image': 'plugins/slack', - 'settings': { - 'webhook': { - 'from_secret': 'private_rocketchat', + "name": "notify", + "image": "plugins/slack", + "settings": { + "webhook": { + "from_secret": "private_rocketchat", }, - 'channel': 'builds', + "channel": "builds", }, } ], "depends_on": [ - "manifest", + "release", ], "trigger": { "ref": [ diff --git a/.gitignore b/.gitignore index 20bb79c..d9a2815 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ release/ coverage.out drone-ansible +.drone.yml