0.21.0 #12
Workflow file for this run
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: Upload to PyPI | |
on: | |
push: | |
tags: ["v*"] | |
jobs: | |
build-sdist: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build sources | |
run: pipx run build -n -s | |
- name: Upload sources | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist-sources | |
path: dist/*.tar.gz | |
build-wheels: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-13, windows-latest] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_SKIP: pp* | |
CIBW_ARCHS_WINDOWS: AMD64 | |
CIBW_ARCHS_LINUX: x86_64 | |
CIBW_ARCHS_MACOS: x86_64 arm64 | |
CIBW_TEST_SKIP: "*arm64" | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist-wheels-${{matrix.os}} | |
path: wheelhouse/*.whl | |
release: | |
runs-on: ubuntu-latest | |
needs: [build-sdist, build-wheels] | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: dist | |
pattern: dist-* | |
merge-multiple: true | |
- name: Check artifacts | |
run: ls -l dist | |
- name: Upload to pypi | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{secrets.PYPI_API_TOKEN}} | |
- name: Create GitHub release | |
run: gh release create "$GITHUB_REF_NAME" dist/* --generate-notes | |
env: | |
GH_TOKEN: ${{github.token}} |