We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e2af11 commit 0944801Copy full SHA for 0944801
.github/workflows/wheel.yml
@@ -85,7 +85,7 @@ jobs:
85
files: python/dist/*.tar.gz
86
87
- name: Build wheel from sdist
88
- run: python -m pip wheel python/dist/*.tar.gz --verbose
+ run: python -m pip wheel "${{ steps.sdist.outputs.paths }}" --verbose
89
90
- name: Copy sdist
91
working-directory: python
@@ -94,8 +94,8 @@ jobs:
94
mkdir -p wheelhouse
95
cp -f dist/*.tar.gz wheelhouse/
96
97
- - name: Validate sdist archive
98
- run: twine check --strict python/wheelhouse/*.whl
+ - name: Validate artifact
+ run: twine check --strict python/wheelhouse/*
99
100
- name: Upload artifact
101
uses: actions/upload-artifact@v4
0 commit comments