Skip to content
play

GitHub Action

homebrew-tap

v1.0.0 Latest version

homebrew-tap

play

homebrew-tap

Create or update a Formula for Homebrew Tap

Installation

Copy and paste the following snippet into your .yml file.

              

- name: homebrew-tap

uses: izumin5210/[email protected]

Learn more about this action in izumin5210/action-homebrew-tap

Choose a version

homebrew for GitHub Actions

Usage:

uses: izumin5210/action-homebrew-tap@v1
with:
  tap: izumin5210/homebrew-tools
  token: ${{ secrets.GITHUB_TOKEN }}
  tap-token: ${{ secrets.TAP_GITHUB_TOKEN }} # require `repo` or `public_repo` scope for the tap repository
if: startsWith(github.ref, 'refs/tags/')
name: Release

on: push

jobs:
  build:
    runs-on: ubuntu-latest
    steps:

    # build something to release...

    - name: Create GitHub Release
      uses: softprops/action-gh-release@v1
      with:
        files: './dist/*'
      if: startsWith(github.ref, 'refs/tags/')
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

    - name: Update Homebrew Formula
      uses: izumin5210/action-homebrew-tap@releases/v0
      with:
        tap: izumin5210/homebrew-tools
        token: ${{ secrets.GITHUB_TOKEN }}
        tap-token: ${{ secrets.TAP_GITHUB_TOKEN }}
      if: startsWith(github.ref, 'refs/tags/')