Skip to content

Commit 0944801

Browse files
committed
Fixed build error in pip wheel build
1 parent 6e2af11 commit 0944801

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/wheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
files: python/dist/*.tar.gz
8686

8787
- name: Build wheel from sdist
88-
run: python -m pip wheel python/dist/*.tar.gz --verbose
88+
run: python -m pip wheel "${{ steps.sdist.outputs.paths }}" --verbose
8989

9090
- name: Copy sdist
9191
working-directory: python
@@ -94,8 +94,8 @@ jobs:
9494
mkdir -p wheelhouse
9595
cp -f dist/*.tar.gz wheelhouse/
9696
97-
- name: Validate sdist archive
98-
run: twine check --strict python/wheelhouse/*.whl
97+
- name: Validate artifact
98+
run: twine check --strict python/wheelhouse/*
9999

100100
- name: Upload artifact
101101
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)