diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 35c445b..ed46667 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -59,8 +59,13 @@ jobs: env: PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} run: | - mkdir -p dist/flattened + # Find ALL wheels from ALL subdirectories find dist -name "*.whl" -exec cp {} dist/flattened/ \; + echo "Flattened wheels:" + ls -la dist/flattened/*.whl + cd dist/flattened + echo "Uploading from $(pwd):" ls -la *.whl maturin upload --skip-existing --non-interactive +