File tree 2 files changed +34
-0
lines changed
2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Manual Homebrew Update
2
+ on :
3
+ workflow_dispatch :
4
+ inputs :
5
+ releaseVersion :
6
+ description : ' Version of the existing release to update Homebrew formula for (e.g., 2.1.0)'
7
+ required : true
8
+
9
+ jobs :
10
+ homebrew :
11
+ name : Update Homebrew Formula
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Update Homebrew Formula
15
+ uses : dawidd6/action-homebrew-bump-formula@v4
16
+ with :
17
+ token : ${{ secrets.HOMEBREW_PR_TOKEN }}
18
+ formula : openapi-diff
19
+ tag : ${{ github.event.inputs.releaseVersion }}
Original file line number Diff line number Diff line change
1
+ name : Update Homebrew Formula On Release
2
+ on :
3
+ release :
4
+ types : [released]
5
+
6
+ jobs :
7
+ homebrew :
8
+ name : Update Homebrew Formula
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Update Homebrew Formula
12
+ uses : dawidd6/action-homebrew-bump-formula@v4
13
+ with :
14
+ token : ${{ secrets.HOMEBREW_PR_TOKEN }}
15
+ formula : openapi-diff
You can’t perform that action at this time.
0 commit comments