Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e13feb commit 30c134bCopy full SHA for 30c134b
1 file changed
.github/workflows/release.yaml
@@ -54,4 +54,15 @@ jobs:
54
--generate-notes \
55
.bin/*
56
env:
57
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
+ - name: Trigger homebrew-tap update
59
+ run: |
60
+ VERSION="${{ steps.version.outputs.VERSION }}"
61
+ VERSION="${VERSION#v}"
62
+ gh api repos/alexei-led/homebrew-tap/dispatches \
63
+ -f event_type=update-formula \
64
+ -f 'client_payload[formula]=spotinfo' \
65
+ -f "client_payload[version]=${VERSION}" \
66
+ -f 'client_payload[repo]=alexei-led/spotinfo'
67
+ env:
68
+ GITHUB_TOKEN: ${{ secrets.TAP_UPDATE_TOKEN }}
0 commit comments