11 lines
201 B
Bash
Executable file
11 lines
201 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Travis Webhook
|
|
wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
|
|
chmod +x send.sh
|
|
./send.sh success $WEBHOOK_URL
|
|
|
|
# Deploy
|
|
./deploy.sh
|