Skip to content

Commit 2badc05

Browse files
committed
wip testpypi
1 parent 4d1b0c3 commit 2badc05

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/testpypi.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: publish package on test pypi
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
publish-to-testpypi:
8+
name: "publish to testpypi"
9+
runs-on: "ubuntu-latest"
10+
11+
environment:
12+
name: testpypi
13+
url: https://test.pypi.org/p/e3tools
14+
15+
permissions:
16+
id-token: write
17+
18+
steps:
19+
- uses: "actions/checkout@v4"
20+
21+
- name: Install uv
22+
uses: astral-sh/setup-uv@v5
23+
24+
- name: build
25+
run: uv build
26+
27+
- name: publish
28+
run: uv publish

0 commit comments

Comments
 (0)