From 4109b91a72f9e54e0779a85c69decab9df7c98c6 Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Fri, 30 Dec 2022 06:03:06 +0300 Subject: [PATCH] :construction_worker: Make `brew-tap` job depend on `release` job --- .github/workflows/release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 406cdc8b9..c0d3d15b7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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