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 740b26f commit 7495b17Copy full SHA for 7495b17
.github/workflows/publish.yml
@@ -0,0 +1,26 @@
1
+name: Publish Python Package
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ test:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Install uv
12
+ uses: astral-sh/setup-uv@v5
13
+ - name: "Set up Python"
14
+ uses: actions/setup-python@v5
15
+ with:
16
+ python-version-file: ".python-version"
17
+ - name: Install the project
18
+ run: uv sync --all-extras --dev
19
+ - name: Build the package
20
+ run: uv build
21
+ - name: Upload artifact
22
+ uses: actions/upload-artifact@v4
23
24
+ name: dist
25
+ path: dist/
26
+ retention-days: 5
0 commit comments