Adds hotio webhook

This commit is contained in:
Jon Lee 2022-09-26 10:42:22 -04:00
parent 3055f0e6a4
commit da820bb2bb
No known key found for this signature in database
GPG key ID: 9665BA6CF5DC2671
2 changed files with 14 additions and 0 deletions

View file

@ -18,6 +18,13 @@ jobs:
with:
ref: develop
- name: Trigger Hotio Webhook
uses: joelwmale/webhook-action@master
with:
url: ${{ secrets.HOTIO_WEBHOOK_URL }}
headers: '{"Authorization": "Bearer ${{ secrets.HOTIO_WEBHOOK_SECRET }}"}'
body: '{ "application": "qbitmanage", "branch": "nightly" }'
- name: Login to Docker Hub
uses: docker/login-action@v2
with:

View file

@ -14,6 +14,13 @@ jobs:
- name: Check Out Repo
uses: actions/checkout@v3
- name: Trigger Hotio Webhook
uses: joelwmale/webhook-action@master
with:
url: ${{ secrets.HOTIO_WEBHOOK_URL }}
headers: '{"Authorization": "Bearer ${{ secrets.HOTIO_WEBHOOK_SECRET }}"}'
body: '{ "application": "qbitmanage", "branch": "release" }'
- name: Login to Docker Hub
uses: docker/login-action@v2
with: