diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 026d699d..b81a7b4a 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -1,14 +1,18 @@ name: Wheels on: - release: - types: [published] + workflow_run: + workflows: [CI] branch: [main] + types: + - completed jobs: build_wheels: name: Build wheels on ${{ matrix.os }} runs-on: ${{ matrix.os }} + if: github.event_name == 'release' && github.event.action == 'published' + strategy: matrix: os: [ubuntu-20.04]