oh-my-posh/.github/workflows/homebrew.yml
2021-11-25 10:58:30 +01:00

22 lines
615 B
YAML

name: Homebrew
on:
release:
types: [published]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Notify Homebrew Repo 🙋🏾‍♀️
uses: actions/github-script@v5
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', '')}
})