Bump version and update changelog (#1414) #137
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: Python Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 |