Skip to content

Bump version and update changelog. (#997) #110

Bump version and update changelog. (#997)

Bump version and update changelog. (#997) #110

Workflow file for this run

name: Python Release
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.11'
- name: Install deps
run: |
cd python
python -m pip install --upgrade pip
python -m pip install -r requirements.txt .
python -m pip install -r requirements-dev.txt .
- name: Install setuptools
run: |
cd python
python -m pip install setuptools
- name: Regen openapi libs
run: |
cd python
./scripts/generate_openapi.sh
- name: Build sdist
run: |
cd python
python setup.py sdist
- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.TWINE_PASSWORD }}
packages_dir: python/dist