Homebrew cask updates #3
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: Homebrew cask updates | |
on: | |
release: | |
types: [published] | |
# Manual trigger from the UI | |
workflow_dispatch: | |
jobs: | |
bump-casks: | |
runs-on: macos-latest | |
steps: | |
- name: Publish release | |
uses: macauley/action-homebrew-bump-cask@v1 | |
with: | |
# Required, custom GitHub access token with only the 'public_repo' scope enabled | |
token: ${{ secrets.HOMEBREW_JIRABAR_PUBLISH_TOKEN }} | |
# Bump all outdated casks in this tap | |
tap: menubar-apps/homebrew-menubar-apps | |
# Bump only these casks if outdated | |
cask: jirabar | |
livecheck: true | |
dryrun: false |