We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e3e369 commit 084203fCopy full SHA for 084203f
.github/workflows/publish.yml
@@ -19,8 +19,10 @@ jobs:
19
- uses: actions/setup-python@v6
20
with:
21
python-version: "3.13"
22
- - run: |
23
- python -m pip install --upgrade build
24
- python -m build
25
- name: Publish to PyPI
26
- uses: pypa/gh-action-pypi-publish@release/v1
+ run: |
+ python -m pip install --upgrade build twine
+ python -m build
+ export TWINE_USERNAME=__token__
27
+ export TWINE_PASSWORD=${{ secrets.PYPI_TOKEN }}
28
+ twine upload dist/*
0 commit comments