We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea3d388 commit b7cd41bCopy full SHA for b7cd41b
.github/workflows/publish-pypi.yml
@@ -28,8 +28,8 @@ jobs:
28
29
publish:
30
environment:
31
- name: "test.pypi.org"
32
- url: "https://test.pypi.org/project/lbster"
+ name: "pypi.org"
+ url: "https://pypi.org/project/lbster"
33
needs:
34
- "build"
35
permissions:
@@ -43,7 +43,7 @@ jobs:
43
- uses: "pypa/gh-action-pypi-publish@release/v1"
44
with:
45
user: __token__
46
- password: ${{ secrets.TEST_PYPI_API_TOKEN }}
47
- repository-url: "https://test.pypi.org/legacy/"
+ password: ${{ secrets.PYPI_API_TOKEN }}
+ repository-url: "https://pypi.org/legacy/"
48
skip-existing: true
49
verbose: true
0 commit comments