File tree Expand file tree Collapse file tree 1 file changed +23
-6
lines changed
Expand file tree Collapse file tree 1 file changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,29 @@ jobs:
4646 permissions :
4747 id-token : write # Required for OIDC token exchange
4848 steps :
49- - uses : actions/checkout@v5
50- - uses : rust-lang/crates-io-auth-action@v1
51- id : auth
52- - run : cargo publish
53- env :
54- CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
49+ - uses : actions/checkout@v5
50+ - uses : rust-lang/crates-io-auth-action@v1
51+ id : auth
52+ - run : cargo publish
53+ env :
54+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
55+
56+ update-homebrew :
57+ name : update-homebrew
58+ needs :
59+ - create-release
60+ runs-on : macos-latest
61+ steps :
62+ - name : Update Homebrew formula
63+ env :
64+ HOMEBREW_GITHUB_API_TOKEN : ${{ secrets.TAP_GITHUB_TOKEN }}
65+ run : |
66+ version="${{ needs.create-release.outputs.version }}"
67+ brew tap lkurcak/tap
68+ brew bump-formula-pr \
69+ --no-browse \
70+ --version="$version" \
71+ lkurcak/tap/tend
5572
5673 build-release :
5774 name : build-release
You can’t perform that action at this time.
0 commit comments