From 0994b6656e313fdbbe3ac1d96ef1b48266732e00 Mon Sep 17 00:00:00 2001 From: BillTheMaker Date: Sat, 6 Dec 2025 20:00:44 -0700 Subject: [PATCH] Clarify wheel flattening in publish.yml Added comments to clarify the wheel flattening process. --- .github/workflows/publish.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 +