Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b6f325 commit 2c602e1Copy full SHA for 2c602e1
1 file changed
.github/workflows/cibuildwheel.yml
@@ -20,12 +20,14 @@ on:
20
jobs:
21
build_wheels:
22
if: |
23
- github.event.action == 'push' ||
24
- (
25
- github.event.action == 'labeled' &&
26
- github.event.label.name == 'Run cibuildwheel'
27
- ) ||
28
- contains(github.event.pull_request.labels.*.name, 'Run cibuildwheel')
+ github.event_name == 'push' ||
+ github.event_name == 'pull_request' && (
+ (
+ github.event.action == 'labeled' &&
+ github.event.label.name == 'Run cibuildwheel'
+ ) ||
29
+ contains(github.event.pull_request.labels.*.name, 'Run cibuildwheel')
30
+ )
31
name: Build wheels on ${{ matrix.os }}
32
runs-on: ${{ matrix.os }}
33
env:
0 commit comments