Skip to content

v3.4.5

v3.4.5 #9

name: PyPI manylinux_aarch64 deployer
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
# Build and deploy manylinux_aarch64 wheels
Linux-aarch64-build:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Build manylinux_aarch64 wheels
uses: pypa/cibuildwheel@v3.3.0
env:
CIBW_ARCHS_LINUX: "aarch64"
CIBW_BUILD: cp310-* cp311-* cp312-* cp313-* cp314-*
- name: Upload manylinux2014_aarch64 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