From c92f5902ecfa1a3509aac910be241c696479798f Mon Sep 17 00:00:00 2001 From: Cris Luengo Date: Mon, 17 Jun 2024 23:42:59 -0600 Subject: [PATCH] Run deploy only for Linux and macOS. --- .github/workflows/deploy.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 29fea35e..bf022e8b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -63,20 +63,3 @@ jobs: HOMEBREW_DIR: /opt/homebrew BUILD_THREADS: 3 MACOSX_DEPLOYMENT_TARGET: 14.0 - - deploy_windows: - runs-on: windows-latest - - steps: - - uses: actions/checkout@v4 - - - name: Install - # Install libraries and Python packages we need - run: | - choco install openjdk8 --no-progress --yes - python -m pip install wheel build twine wget - - - name: Deploy - run: tools/build/deploy_windows.bat - env: - PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}