Update maven.yml #66

Merged
Schlauer-Hax merged 5 commits from Schlauer-Hax-patch-1 into master 2019-11-16 22:12:52 +01:00
Showing only changes of commit 67e8017f68 - Show all commits

View file

@ -30,4 +30,15 @@ jobs:
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script: /home/Bots/deploy.sh
script: /home/Bots/deploy.sh
- name: Send Webhook Notification
if: always()
env:
JOB_STATUS: ${{ job.status }}
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
HOOK_OS_NAME: ${{ runner.os }}
WORKFLOW_NAME: ${{ github.workflow }}
run: |
git clone https://github.com/DiscordHooks/github-actions-discord-webhook.git webhook
bash webhook/send.sh $JOB_STATUS $WEBHOOK_URL
shell: bash