From 3727550cb2902c2701e386df89d7600ba10898ab Mon Sep 17 00:00:00 2001 From: mio Date: Sat, 21 Dec 2024 22:51:25 +0800 Subject: [PATCH] CI(full): 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 2bdb752..42a055b 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: ${{ matrix.config.os }} + runs-on: ${{ startsWith(github.ref, 'refs/tags') || contains(github.event.head_commit.message, 'CI(full)') }} strategy: fail-fast: false matrix: @@ -165,7 +165,7 @@ jobs: permissions: id-token: write runs-on: ubuntu-latest - if: ${{ startsWith(github.ref, 'refs/tags') || contains(github.event.head_commit.message, 'CI(full)') }} + if: startsWith(github.ref, 'refs/tags') steps: - uses: actions/download-artifact@v4 with: