Skip to content

Commit 7249897

Browse files
authored
Create publish-to-pypi.yml
1 parent 9f6e772 commit 7249897

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: publish
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: astral-sh/setup-uv@v5
11+
- name: Test
12+
env:
13+
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
14+
run: |
15+
uv sync
16+
uv publish

0 commit comments

Comments
 (0)