Skip to content

Update install.bat

Update install.bat #5

Workflow file for this run

name: Send Webhook on Update
on:
push:
branches:
- main
jobs:
send-webhook:
runs-on: Windows 7/8/10/11
steps:
- name: Send message to webhook
uses: actions/http-client@v1
with:
url: ${{ secrets.WEBHOOK_URL }}
method: 'POST'
headers: |
Content-Type: application/json
body: |
{
"content": "Nouvelle update",
"branch": "${{ github.ref }}",
"committer": "${{ github.actor }}"
}