We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37427a0 commit 74df466Copy full SHA for 74df466
.github/workflows/publish.yml
@@ -18,10 +18,10 @@ jobs:
18
19
steps:
20
- name: Checkout repository
21
- uses: action/checkout@v3
+ uses: actions/checkout@v3
22
23
- name: Setup Python
24
- uses: action/setup-python@v5
+ uses: actions/setup-python@v5
25
with:
26
python-version: "3.13"
27
@@ -37,4 +37,4 @@ jobs:
37
38
- name: Publish
39
run: |
40
- python -m twine upload --skip-existing --verbose dist/*
+ python -m twine upload --username ${{ secrets.PYPI_USERNAME }} --password ${{ secrets.PYPI_TOKEN }} --skip-existing --verbose dist/*
0 commit comments