2021-10-06 12:43:18 -07:00
|
|
|
name: Homebrew
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
notify:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Notify Homebrew Repo 🙋🏾♀️
|
2023-11-19 16:14:52 -08:00
|
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
|
2021-10-06 12:43:18 -07:00
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GH_PAT }}
|
|
|
|
script: |
|
|
|
|
await github.request('POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches', {
|
|
|
|
owner: 'jandedobbeleer',
|
|
|
|
repo: 'homebrew-oh-my-posh',
|
|
|
|
workflow_id: 'release.yml',
|
|
|
|
ref: 'main',
|
|
|
|
inputs: {"version": process.env.GITHUB_REF.replace('refs/tags/v', '')}
|
|
|
|
})
|