Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PyPI manylinux_x86_64 deployer | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| jobs: | |
| # Build and deploy manylinux_x86_64 wheels | |
| # follow numpy schema: https://pypi.org/project/numpy/#files | |
| Linux-x86-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Build manylinux_x86_64 wheels | |
| uses: pypa/cibuildwheel@v3.3.0 | |
| env: | |
| CIBW_ARCHS_LINUX: "x86_64" | |
| CIBW_BUILD: cp310-* cp311-* cp312-* cp313-* cp314-* | |
| - name: Upload manylinux2014_x86_64 wheels to PyPI | |
| env: | |
| TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
| TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
| run: | | |
| ls -l ./wheelhouse | |
| pip install -U packaging twine | |
| twine upload --skip-existing ./wheelhouse/*.whl |