-
Notifications
You must be signed in to change notification settings - Fork 174
49 lines (40 loc) · 1013 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
48
49
name: Python Release
on:
workflow_dispatch:
workflow_run:
workflows:
- Mega Releaser
types:
- completed
jobs:
build:
name: Build distributions
runs-on: ubuntu-24.04
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-dev.txt
- name: Install build
run: |
cd python
python -m pip install build
- name: Regen openapi libs
run: |
cd python
./scripts/generate_openapi.sh
- name: Build distributions
run: |
cd python
python -m build
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TWINE_PASSWORD }}
packages_dir: python/dist