We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f04b75 commit db1c959Copy full SHA for db1c959
.github/workflows/trigger-homebrew.yml
@@ -1,16 +1,16 @@
1
+name: Homebrew
2
+
3
on:
4
push:
5
tags: 'v*'
6
7
jobs:
- homebrew:
- name: Bump Homebrew Cask
8
+ pr-to-homebrew:
9
runs-on: macos-latest
10
steps:
- - uses: macauley/action-homebrew-bump-cask@v1
11
- with:
12
- token: ${{ secrets.GH_TOKEN }}
13
- org: gitify-app
14
- tap: homebrew/homebrew-cask
15
- cask: gitify
16
- force: false
+ - uses: Homebrew/actions/setup-homebrew@master
+ - id: version
+ run: echo "version=$(echo ${{ github.ref }} | sed 's/refs\/tags\/v//')" >> $GITHUB_OUTPUT
+ - run: brew bump-cask-pr gitify --version=${{ steps.version.outputs.version }} --message="Bump gitify to ${{ steps.version.outputs.version }}"
+ env:
+ HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GH_TOKEN }}
0 commit comments