-
Notifications
You must be signed in to change notification settings - Fork 29
51 lines (37 loc) · 1.18 KB
/
py-release.yml
File metadata and controls
51 lines (37 loc) · 1.18 KB
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
50
51
name: Python - Release
on:
release:
types: [published]
env:
PYTHON_VERSION: 3.12
jobs:
pypi-release:
name: Build and release Python package
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/py/v')
environment:
name: pypi
url: https://pypi.org/project/querychat/
permissions: # for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
- name: 🚀 Install uv
uses: astral-sh/setup-uv@v3
- name: 🐍 Set up Python ${{ env.PYTHON_VERSION }}
run: uv python install ${{ env.PYTHON_VERSION }}
- name: 📦 Install the project
run: uv sync --python ${{ env.PYTHON_VERSION }} --all-extras --all-groups
- name: 🧪 Check tests
run: make py-check-tests
- name: 📝 Check types
run: make py-check-types
- name: 📐 Check formatting
run: make py-check-format
- name: 🧳 Build package
run: make py-build
# TODO: https://pypi.org/manage/project/querychat/settings/publishing/
- name: 🚢 Publish release on PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: ./dist