File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 66 - published
77
88env :
9- DEFAULT_PYTHON : 3.12
9+ DEFAULT_PYTHON : 3.13
1010
1111jobs :
1212 release-pypi :
1616 name : PyPI
1717 url : https://pypi.org/project/python-typing-update/
1818 permissions :
19+ id-token : write # Required for publishing with OIDC to PyPI
1920 contents : write # Required to upload release assets
2021 steps :
2122 - name : Check out code from Github
@@ -27,16 +28,11 @@ jobs:
2728 python-version : ${{ env.DEFAULT_PYTHON }}
2829 - name : Build distributions
2930 run : |
30- python -m pip install -U pip twine build
31+ python -m pip install -U pip build
3132 python -m build
3233 - name : Upload to PyPI
3334 if : github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
34- env :
35- TWINE_REPOSITORY : pypi
36- TWINE_USERNAME : __token__
37- TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
38- run : |
39- twine upload --verbose dist/*
35+ 4036 - name : Upload release assets
41374238 with :
You can’t perform that action at this time.
0 commit comments