13 lines
311 B
YAML
13 lines
311 B
YAML
name: Build on push
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-webhook:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Call the webhook
|
|
uses: distributhor/workflow-webhook@v3
|
|
with:
|
|
webhook_url: ${{ secrets.WEBHOOK_URL }}
|
|
webhook_secret: ${{ secrets.WEBHOOK_KEY }}
|
|
verbose: true |