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 2104c3e commit 72f6e8eCopy full SHA for 72f6e8e
.github/workflows/package-publish.yml
@@ -10,9 +10,9 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
14
- name: Set up Python
15
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v5
16
with:
17
python-version: '3.x'
18
- name: Install dependencies
@@ -21,8 +21,8 @@ jobs:
21
pip install setuptools wheel cython build twine
22
- name: Build and publish
23
env:
24
- TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
25
- TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
+ TWINE_USERNAME: __token__
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
26
run: |
27
python -m build -s
28
twine upload dist/*
0 commit comments