From 816a51cd22386c357626e0987625780526a0cedc Mon Sep 17 00:00:00 2001 From: nightly Date: Wed, 19 Oct 2022 16:05:44 +0200 Subject: [PATCH] Make discord notifications possible --- .drone.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 5c91362..37c7159 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,17 +2,25 @@ kind: pipeline name: default steps: -- name: install +- name: Install image: node commands: - npm install -- name: build +- name: Build image: node commands: - npm run build -- name: test +- name: Test image: node commands: - - npm run test \ No newline at end of file + - npm run test + +- name: Discord Notification + image: appleboy/drone-discord + settings: + webhook_id: + from_secret: webhook_id + webhook_token: + from_secret: webhook_token \ No newline at end of file