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 9a301b5 commit 5e8806fCopy full SHA for 5e8806f
.github/workflows/build_wheels.yml
@@ -4,12 +4,14 @@ on:
4
release:
5
push:
6
branches:
7
- - "master"
+ - "*"
8
9
jobs:
10
build_wheels:
11
name: ${{ matrix.os }}
12
runs-on: ${{ matrix.os }}
13
+ if: "contains(github.event.head_commit.message, 'build wheels') ||
14
+ github.event.head_commit.branch == 'master' "
15
strategy:
16
matrix:
17
os: [ubuntu-latest, macos-latest, windows-latest]
@@ -30,7 +32,7 @@ jobs:
30
32
31
33
- name: Install cibuildwheel
34
run: |
- python -m pip install cibuildwheel==1.3.0
35
+ python -m pip install cibuildwheel==1.10.0
36
37
- name: Install Visual C++ for Python 2.7
38
if: startsWith(matrix.os, 'windows')
0 commit comments