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 0e793e3 commit 18170d6Copy full SHA for 18170d6
.github/workflows/pypi_upload.yml
@@ -53,7 +53,8 @@ jobs:
53
pipx install cibuildwheel==3.2.1
54
pipx install pypyp==1.3.0
55
- name: generate matrix
56
- if: github.event_name != 'pull_request'
+ if: |
57
+ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'ci: build all wheels')
58
run: |
59
{
60
cibuildwheel --print-build-identifiers --platform linux \
@@ -68,7 +69,8 @@ jobs:
68
69
CIBW_ARCHS_MACOS: x86_64 arm64
70
CIBW_ARCHS_WINDOWS: AMD64
71
- name: generate matrix (PR)
- if: github.event_name == 'pull_request'
72
73
+ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'ci: build all wheels')
74
75
76
0 commit comments