diff options
| -rw-r--r-- | .travis.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 0ce2ec14a9..3948c2908e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,4 +32,12 @@ jobs: skip_cleanup: true file_glob: true on: - tags: false
\ No newline at end of file + tags: false +after_success: + - wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh + - chmod +x send.sh + - ./send.sh success $WEBHOOK_URL +after_failure: + - wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh + - chmod +x send.sh + - ./send.sh failure $WEBHOOK_URL |
