Skip to content

Commit cafa9be

Browse files
committed
try uploading wheel on windows
1 parent a5b6234 commit cafa9be

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/python.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,16 @@ jobs:
290290
shell: cmd
291291
run: |
292292
call "ci\scripts\python_build.bat" %cd% "${{ steps.path-info.outputs.usr-windows-dir }}"
293+
- name: Build Wheel
294+
run: |
295+
python -m pip install --upgrade build
296+
python -m build --wheel . --no-isolation
297+
- name: Upload wheel
298+
if: always() # ensures this runs even on failure
299+
uses: actions/upload-artifact@v4
300+
with:
301+
name: built-wheel
302+
path: dist/*.whl
293303
- name: Test PyArrow
294304
shell: cmd
295305
run: |

0 commit comments

Comments
 (0)