diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index 42a055b..ea261e1 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -72,7 +72,7 @@ jobs: build_wheels_all: name: Build wheels on ${{ matrix.config.os }} for ${{ matrix.config.cibw }} and ${{ matrix.config.cibw_skip }} - runs-on: ${{ startsWith(github.ref, 'refs/tags') || contains(github.event.head_commit.message, 'CI(full)') }} + runs-on: ${{ matrix.config.os }} strategy: fail-fast: false matrix: @@ -95,7 +95,7 @@ jobs: - os: macos-latest cibw: "{cp310*, cp311*, cp312*, cp313*}" cibw_skip: "" - if: startsWith(github.ref, 'refs/tags') + if: ${{ startsWith(github.ref, 'refs/tags') || contains(github.event.head_commit.message, 'CI(full)') }} steps: - name: Checkout sources uses: actions/checkout@v4