Skip to content

Commit 0e34ad0

Browse files
committed
build: add a step for publishing on pypi
1 parent b516def commit 0e34ad0

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,13 @@ jobs:
3232
run: uv sync --all-extras --dev
3333

3434
- name: Run tests
35-
run: uv run pytest tests
35+
run: uv run pytest tests
36+
37+
publish:
38+
runs-on: ubuntu-latest
39+
needs: build
40+
steps:
41+
- uses: actions/checkout@v4
42+
43+
- name: Publish package
44+
run: uv publish

0 commit comments

Comments
 (0)