Skip to content

Commit

Permalink
CI(full): 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 f426db3 commit 3727550
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: ${{ matrix.config.os }}
runs-on: ${{ startsWith(github.ref, 'refs/tags') || contains(github.event.head_commit.message, 'CI(full)') }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 3727550

Please sign in to comment.