Create dispatch.yml

This commit is contained in:
Matt Troutman 2024-05-19 03:02:29 -05:00 committed by GitHub
parent a772313922
commit c1ee03d926
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

18
.github/workflows/dispatch.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Dispatch new release
on:
release:
types: [published]
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.PAT }}
repository: trtmn/homebrew-trtmn
event-type: new_release
client-payload: '{"version": "${{ github.event.release.tag_name }}"}'