ci: add support for python 3.13 (#261) #103
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: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
release-type: python | |
- uses: actions/checkout@v3 | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
fetch-depth: 2 | |
- name: Set up Python | |
if: ${{ steps.release.outputs.release_created }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' # keep synced with dev-env.yml | |
- name: Upgrade pip | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
pip install --upgrade pip | |
pip --version | |
- name: Install Poetry | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
pip install 'poetry==1.8.3' # keep version synced with dev-env.yml | |
poetry --version | |
- name: Bump version for developmental release | |
if: ${{ steps.release.outputs.release_created }} | |
env: | |
version: ${{ steps.release.outputs.tag_name }} | |
run: | | |
poetry version $version | |
- name: Build package | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
poetry build --ansi | |
- uses: actions/upload-artifact@v4 | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
name: dist | |
path: dist/ | |
upload_pypi: | |
needs: release | |
runs-on: ubuntu-latest | |
if: ${{ needs.release.outputs.release_created }} | |
environment: release | |
permissions: | |
# IMPORTANT: this permission is mandatory for trusted publishing | |
id-token: write | |
steps: | |
- name: Get artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
path: dist | |
- name: Publish package on TestPyPI | |
uses: pypa/gh-action-pypi-publish@v1.8.14 | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
- name: Publish package on PyPI | |
uses: pypa/gh-action-pypi-publish@v1.8.14 |