Skip to content

Commit

Permalink
CI(full): Fix to Fix to trigger a full build CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Dec 21, 2024
1 parent 3727550 commit d452135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit d452135

Please sign in to comment.