chore: changelog v0.15.1 #311
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: Publish to PyPI | |
| on: | |
| push: | |
| branches: [main] | |
| tags: [v*] | |
| # pull_request: | |
| jobs: | |
| build-sdist: | |
| name: 🐍 sdist and universal wheel | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: hynek/build-and-inspect-python-package@v2 | |
| build-wheels: | |
| name: mypyc wheels (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-13, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: astral-sh/setup-uv@v7 | |
| - name: Build wheels via cibuildwheel | |
| uses: pypa/[email protected] | |
| - name: Upload wheels artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: cibw-wheels-${{ runner.os }}-${{ runner.arch }} | |
| path: ./wheelhouse/*.whl | |
| publish: | |
| name: Publish to PyPI | |
| needs: [build-sdist, build-wheels] | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: write | |
| steps: | |
| - name: Get sdist | |
| uses: actions/download-artifact@v7 | |
| with: | |
| name: Packages | |
| path: dist | |
| - name: Get wheels | |
| uses: actions/download-artifact@v7 | |
| with: | |
| pattern: cibw-wheels-* | |
| path: dist | |
| merge-multiple: true | |
| - name: 🚢 Publish to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| generate_release_notes: true | |
| files: "./dist/*" |