We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba68781 commit 848a64aCopy full SHA for 848a64a
2 files changed
.github/workflows/publish.yml
@@ -1,17 +1,16 @@
1
name: Publish
2
3
on:
4
- # push:
5
- # tags:
6
- # # Publish on any tag starting with a `v`, e.g., v0.1.0
7
- # - v*
8
- workflow_dispatch:
+ push:
+ tags:
+ # Publish on any tag starting with a `v`, e.g., v0.1.0
+ - v*
9
10
jobs:
11
run:
12
runs-on: ubuntu-latest
13
environment:
14
- name: testpypi
+ name: pypi
15
permissions:
16
id-token: write
17
contents: read
@@ -31,4 +30,4 @@ jobs:
31
30
run: uv build
32
33
- name: Publish
34
- run: uv publish --index testpypi
+ run: uv publish
pyproject.toml
@@ -39,9 +39,3 @@ lint = [
39
pythonpath = [
40
"src"
41
]
42
-
43
-[[tool.uv.index]]
44
-name = "testpypi"
45
-url = "https://test.pypi.org/simple/"
46
-publish-url = "https://test.pypi.org/legacy/"
47
-explicit = true
0 commit comments