From bb87e7cb4039ed1640ef6368eb32d4ce0c1299b4 Mon Sep 17 00:00:00 2001 From: Ricardo Carrasco Date: Mon, 26 Sep 2022 14:28:28 -0400 Subject: [PATCH] test gchat --- .drone.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.drone.yml b/.drone.yml index d397271..8b0aa7d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,21 +3,21 @@ type: docker name: default steps: - - name: init - image: node:16-alpine - commands: - - "npm install" - - name: start - image: node:16-alpine - commands: - # - "npm run build" - - "npm test -- --watchAll=false" - - "npm test -- --watchAll=false" + # - name: init + # image: node:16-alpine + # commands: + # - "npm install" + # - name: start + # image: node:16-alpine + # commands: + # # - "npm run build" + # - "npm test -- --watchAll=false" + # - "npm test -- --watchAll=false" - name: notify image: alpine:3 environment: GCHAT_WH: from_secret: GCHAT_WH commands: - - "sudo apt install curl" + - "apt install curl" - "curl -X 'POST' '$GCHAT_WH' -H 'Content-type:application/json' -d '{'text':'Drone says hello'}' "