We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f8a7b commit 5ca7c52Copy full SHA for 5ca7c52
1 file changed
.github/workflows/release.yml
@@ -12,15 +12,23 @@ jobs:
12
name: release
13
permissions:
14
id-token: write
15
+ env:
16
+ UV_SYSTEM_PYTHON: 1
17
steps:
18
- uses: actions/checkout@v5
19
with:
20
persist-credentials: false
- - uses: astral-sh/setup-uv@v7
21
+ - name: Setup python
22
+ uses: actions/setup-python@v6
23
- enable-cache: false
- python-version: "3.12"
- version: "latest"
24
+ python-version: '3.14'
25
+ - id: setup-uv
26
+ name: Setup UV
27
+ uses: astral-sh/setup-uv@v7
28
+ with:
29
+ enable-cache: true
30
+ cache-suffix: '3.14'
31
+ version: "3.14"
32
- run: uv version "${GITHUB_REF_NAME}"
33
- run: uv build
34
- name: Release package
0 commit comments