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
|
2024-02-04 16:06:00 +01:00
|
|
|
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 }}"
|
|
|
|
}
|