Valve VERC V1 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
homebrew: | |
name: Bump Homebrew formula | |
runs-on: ubuntu-latest | |
steps: | |
- name: Bump v5.x formula | |
uses: mislav/[email protected] | |
if: "contains(github.ref, 'v5')" | |
with: | |
formula-name: zsh-abbr | |
formula-path: zsh-abbr.rb | |
homebrew-tap: olets/homebrew-tap | |
commit-message: | | |
feat({{formulaName}}): publish {{version}} | |
Created by https://github.com/mislav/bump-homebrew-formula-action | |
env: | |
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }} | |
- name: Bump v4.x formula | |
uses: mislav/[email protected] | |
if: "contains(github.ref, 'v4')" | |
with: | |
formula-name: zsh-abbr@4 | |
formula-path: [email protected] | |
homebrew-tap: olets/homebrew-tap | |
commit-message: | | |
feat({{formulaName}}): publish {{version}} | |
Created by https://github.com/mislav/bump-homebrew-formula-action | |
env: | |
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }} |