Create dispatch.yml
This commit is contained in:
parent
a772313922
commit
c1ee03d926
18
.github/workflows/dispatch.yml
vendored
Normal file
18
.github/workflows/dispatch.yml
vendored
Normal 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 }}"}'
|
Loading…
Reference in New Issue
Block a user