File tree Expand file tree Collapse file tree 2 files changed +27
-31
lines changed Expand file tree Collapse file tree 2 files changed +27
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ on :
2+ release :
3+ types : [ released ]
4+ workflow_dispatch :
5+ inputs :
6+ tag-name :
7+ description : ' The git tag name to bump the formula to'
8+ required : true
9+
10+ jobs :
11+ homebrew :
12+ name : Bump Homebrew formula
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Extract version
16+ id : extract-version
17+ run : |
18+ echo "tag-name=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
19+ - uses : mislav/bump-homebrew-formula-action@v3
20+ with :
21+ formula-name : cf-vault
22+ homebrew-tap : jacobbednarz/homebrew-tap
23+ download-url : https://github.com/jacobbednarz/cf-vault/archive/refs/tags/${{ steps.extract-version.outputs.tag-name }}.tar.gz
24+ commit-message : |
25+ Updates {{formulaName}} to {{version}}
26+ env :
27+ COMMITTER_TOKEN : ${{ secrets.HOMEBREW_UPDATER_PAT }}
You can’t perform that action at this time.
0 commit comments