Browse Source

test gchat

master
Ricardo A Carrasco 2 years ago
parent
commit
bb87e7cb40
  1. 22
      .drone.yml

22
.drone.yml

@ -3,21 +3,21 @@ type: docker @@ -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'}' "

Loading…
Cancel
Save