ESPresense/.github/workflows/dispatch.yml

23 lines
529 B
YAML
Raw Permalink Normal View History

2023-11-13 14:43:27 +01:00
name: Dispatch Events
on:
release:
types: [published]
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
2023-11-13 14:43:27 +01:00
with:
token: ${{ secrets.ESPRESENSE_CONTENTS_TOKEN }}
repository: ESPresense/ESPresense.github.io
event-type: new-release
client-payload: >
{
"repository": "ESPresense/ESPresense",
"ref": "${{ github.ref }}",
"sha": "${{ github.sha }}"
}