update ci #15
This file contains 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: Build and Publish Wheels | |
on: | |
push: | |
branches: | |
- main | |
- "release/*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install package dependencies | |
run: pip install setuptools-rust==1.9.0 | |
- name: Install build tools | |
run: pip install wheel | |
- name: Build the package | |
run: python setup.py sdist bdist_wheel | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist-${{ matrix.python-version }} | |
path: dist/* | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifacts for Python 3.8 | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist-3.8 | |
path: dist/3.8 | |
- name: Download artifacts for Python 3.9 | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist-3.9 | |
path: dist/3.9 | |
- name: Download artifacts for Python 3.10 | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist-3.10 | |
path: dist/3.10 | |
- name: Download artifacts for Python 3.11 | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist-3.11 | |
path: dist/3.11 | |
- name: Combine all artifacts | |
run: mkdir -p final_dist && cp dist/*/* final_dist/ | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install twine | |
run: pip install twine | |
- name: Publish to PyPI | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: twine upload final_dist/* |