We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9a978e commit de0d3c0Copy full SHA for de0d3c0
.github/workflows/publish.yaml
@@ -21,12 +21,15 @@ jobs:
21
MY_GITHUB_PAT: op://Developer/GitHub/PAT
22
23
- name: Update Homebrew formula
24
- uses: dawidd6/action-homebrew-bump-formula@v3
25
- with:
26
- token: ${{ env.MY_GITHUB_PAT }}
27
- tap: bartekpacia/homebrew-tools
28
- formula: scripts
29
- force: true
+ run: |
+ brew bump-formula-pr \
+ --message "bump version to $(git describe --tags)" \
+ --no-browse \
+ --strict \
+ --online \
30
+ --tag "$(git describe --tags)" \
31
+ --revision "$(git rev-parse HEAD)" \
32
+ scripts
33
34
- name: Create release on GitHub
35
uses: softprops/action-gh-release@v1
0 commit comments