👷 Make brew-tap job depend on release job

This commit is contained in:
M. Mert Yildiran 2022-12-30 06:03:06 +03:00
parent de728840f0
commit 4109b91a72
No known key found for this signature in database
GPG Key ID: DA5D6DCBB758A461

View File

@ -10,8 +10,8 @@ concurrency:
cancel-in-progress: true
jobs:
cli:
name: Build the CLI and publish
release:
name: Build and publish a new release
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
@ -60,8 +60,10 @@ jobs:
prerelease: ${{ github.ref != 'refs/heads/main' }}
bodyFile: 'bin/README.md'
goreleaser:
brew-tap:
name: Create Homebrew formulae
runs-on: ubuntu-latest
needs: [release]
steps:
- name: Checkout
uses: actions/checkout@v2