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 1c19fa0 commit 9f4f08aCopy full SHA for 9f4f08a
.github/workflows/build.yml
@@ -167,16 +167,16 @@ jobs:
167
upload_pypi:
168
needs: [build_wheels, build_sdist]
169
runs-on: ubuntu-latest
170
+ permissions:
171
+ id-token: write # needed for trusted publishing
172
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
173
steps:
174
- uses: actions/download-artifact@v4
175
with:
176
pattern: artifact-*
177
merge-multiple: true
178
path: dist
- - uses: pypa/[email protected]
- with:
179
- password: ${{ secrets.PYPI_API_TOKEN }}
180
- # testing:
+ - uses: pypa/gh-action-pypi-publish@release/v1
+ # testing:
181
+ #with:
182
#repository_url: https://test.pypi.org/legacy/
- #password: ${{ secrets.TEST_PYPI_API_TOKEN }}
0 commit comments