-
Notifications
You must be signed in to change notification settings - Fork 174
47 lines (38 loc) · 1012 Bytes
/
python-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Python Release
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build source distribution
runs-on: ubuntu-latest
environment: release
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
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@release/v1
with:
password: ${{ secrets.TWINE_PASSWORD }}
packages_dir: python/dist