From 65de47607f079fb0f7da24961ed495eadbe16864 Mon Sep 17 00:00:00 2001 From: Chidi Williams Date: Thu, 14 Mar 2024 01:54:37 +0000 Subject: [PATCH] chore: remove Homebrew build --- .github/workflows/ci.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9961eb384..8b4ea0d318 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,6 @@ jobs: fail-fast: false matrix: include: - - os: macos-latest - os: windows-latest - os: ubuntu-20.04 - os: ubuntu-22.04 @@ -86,7 +85,6 @@ jobs: fail-fast: false matrix: include: - - os: macos-latest - os: windows-latest steps: - uses: actions/checkout@v3 @@ -218,7 +216,6 @@ jobs: fail-fast: false matrix: include: - - os: macos-latest - os: windows-latest needs: [ build, test ] if: startsWith(github.ref, 'refs/tags/') @@ -242,21 +239,3 @@ jobs: Buzz*-unix.tar.gz Buzz*-windows.exe Buzz*-mac.dmg - - deploy_brew_cask: - runs-on: macos-latest - needs: [ release ] - if: startsWith(github.ref, 'refs/tags/') - steps: - - uses: actions/checkout@v3 - with: - submodules: recursive - - name: Install Poetry Action - uses: snok/install-poetry@v1.3.1 - with: - virtualenvs-create: true - virtualenvs-in-project: true - - name: Upload to Brew - run: make upload_brew - env: - HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}