From 567abe12c0906e19a50aecef628baa3da9df2b04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Sat, 3 Oct 2020 14:26:43 +0200 Subject: [PATCH] Update Drone email notification config --- .drone.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index 839a434..fe825ff 100644 --- a/.drone.yml +++ b/.drone.yml @@ -32,8 +32,8 @@ steps: - name: build-node image: node:latest commands: - - npm install -s - - npm run build + - yarn + - yarn build # # Build the Docker image @@ -126,14 +126,16 @@ steps: - name: notify-email image: drillster/drone-email settings: - skip_verify: true - host: mail.flayks.com - username: admin@flayks.com + host: + from_secret: notify_email_server + from: + from_secret: notify_email_address + username: + from_secret: notify_email_address password: from_secret: notify_email_password - from: admin@flayks.com recipients: - - admin@flayks.com + - hello@flayks.com recipients_only: true