Skip to content

Commit b1b450a

Browse files
authored
publish job (#6059)
1 parent 2175b3b commit b1b450a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/publish.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Publish to PyPI
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
environment:
10+
name: pypi
11+
permissions:
12+
id-token: write
13+
contents: read
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v6
17+
18+
- name: Install uv
19+
uses: astral-sh/setup-uv@v7
20+
21+
- name: Build
22+
run: uv build
23+
24+
- name: Publish
25+
run: uv publish

0 commit comments

Comments
 (0)