Bump Homebrew Cask PR #4
This file contains hidden or 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: Bump Homebrew Cask PR | |
| on: | |
| release: | |
| types: | |
| - edited | |
| workflow_dispatch: | |
| jobs: | |
| homebrew-bump: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Get release version | |
| run: | | |
| # Extract tag | |
| TAG_NAME="${{ github.event.release.tag_name }}" | |
| if [ -z "$TAG_NAME" ]; then | |
| TAG_NAME=$(git fetch --tags && git describe --tags $(git rev-list --tags --max-count=1)) | |
| fi | |
| # Remove 'v' before tag | |
| VERSION=$(echo "$TAG_NAME" | sed 's/^v//') | |
| echo "Release version: $VERSION" | |
| echo "VERSION=$VERSION" >> $GITHUB_ENV | |
| - uses: mislav/bump-homebrew-formula-action@v3 | |
| with: | |
| formula-name: nethlink | |
| formula-path: Casks/n/nethlink.rb | |
| homebrew-tap: Homebrew/homebrew-cask | |
| tag-name: ${{ env.VERSION }} | |
| env: | |
| COMMITTER_TOKEN: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} |