We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c026f52 commit 2f17c37Copy full SHA for 2f17c37
.github/workflows/build.yml
@@ -21,7 +21,11 @@ jobs:
21
- name: Install cibuildwheel
22
run: pip install cibuildwheel twine
23
24
- # Step 3: Build wheels with manylinux2014
+ # Step 3: Debug environment variables
25
+ - name: Debug CIBW_SKIP
26
+ run: echo "CIBW_SKIP=$CIBW_SKIP"
27
+
28
+ # Step 4: Build wheels with manylinux2014
29
- name: Build wheels
30
env:
31
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
@@ -32,7 +36,7 @@ jobs:
32
36
pip install --upgrade pip setuptools wheel
33
37
run: cibuildwheel --platform linux
34
38
35
- # Step 4: Upload wheels to PyPI
39
+ # Step 5: Upload wheels to PyPI
40
- name: Publish to PyPI
41
if: github.ref == 'refs/heads/master'
42
0 commit comments