Skip to content

Commit de0d3c0

Browse files
committed
migrate off of dawidd6/action-homebrew-bump-formula
1 parent a9a978e commit de0d3c0

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

Diff for: .github/workflows/publish.yaml

+9-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,15 @@ jobs:
2121
MY_GITHUB_PAT: op://Developer/GitHub/PAT
2222

2323
- 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
24+
run: |
25+
brew bump-formula-pr \
26+
--message "bump version to $(git describe --tags)" \
27+
--no-browse \
28+
--strict \
29+
--online \
30+
--tag "$(git describe --tags)" \
31+
--revision "$(git rev-parse HEAD)" \
32+
scripts
3033
3134
- name: Create release on GitHub
3235
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)