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 ac31ebe commit a002371Copy full SHA for a002371
.github/workflows/python-publish.yml
@@ -0,0 +1,26 @@
1
+name: Upload Python Package
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+permissions:
8
+ contents: read
9
10
+jobs:
11
+ release-build:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: Install uv
18
+ uses: astral-sh/setup-uv@v5
19
20
+ - name: "Set up Python"
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version-file: "pyproject.toml"
24
25
+ - name: Build
26
+ run: uv build
0 commit comments