Clarify wheel flattening in publish.yml
Added comments to clarify the wheel flattening process.
This commit is contained in:
7
.github/workflows/publish.yml
vendored
7
.github/workflows/publish.yml
vendored
@@ -59,8 +59,13 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
mkdir -p dist/flattened
|
# Find ALL wheels from ALL subdirectories
|
||||||
find dist -name "*.whl" -exec cp {} dist/flattened/ \;
|
find dist -name "*.whl" -exec cp {} dist/flattened/ \;
|
||||||
|
echo "Flattened wheels:"
|
||||||
|
ls -la dist/flattened/*.whl
|
||||||
|
|
||||||
cd dist/flattened
|
cd dist/flattened
|
||||||
|
echo "Uploading from $(pwd):"
|
||||||
ls -la *.whl
|
ls -la *.whl
|
||||||
maturin upload --skip-existing --non-interactive
|
maturin upload --skip-existing --non-interactive
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user