From d452135eb646fbc062024aad6ed5174063bc8925 Mon Sep 17 00:00:00 2001 From: mio Date: Sat, 21 Dec 2024 22:52:27 +0800 Subject: [PATCH] CI(full): Fix to Fix to trigger a full build CI --- .github/workflows/wheels.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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