We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 517cf44 commit 6e14236Copy full SHA for 6e14236
.github/workflows/pypi_release.yaml
@@ -59,12 +59,17 @@ jobs:
59
python -m build --sdist --wheel
60
cd dist
61
# numpy-2.2.0-pp310-pypy310_pp73-macosx_14_0_x86_64.whl
62
- for file in *.whl; do \
+ for file in *.whl; do \
63
newname=$(echo "$file" | sed -E 's/-py3-none-any//'); \
64
mv "$file" "${newname%.whl}-${{ matrix.os }}-py${{ matrix.python-version }}.whl"; \
65
- done
+ if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then \
66
+ mv "${newname%.whl}-${{ matrix.os }}-py${{ matrix.python-version }}.whl" "${newname%.whl}-manylinux1_x86_64.whl"; \
67
+ fi; \
68
+ done
69
cd ..
-
70
+ - name: List the files in dist directory
71
+ run: |
72
+ ls -l dist/
73
- name: Store the distribution packages
74
uses: actions/upload-artifact@v4
75
with:
0 commit comments