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 c9ef9ee commit fa65cc8Copy full SHA for fa65cc8
.github/workflows/ci.yml
@@ -284,19 +284,19 @@ jobs:
284
needs: [build_wheels]
285
runs-on: ubuntu-latest
286
environment: release
287
+ permissions:
288
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
289
290
steps:
291
- uses: actions/download-artifact@v4
292
with:
293
# unpacks default artifact into dist/
294
# if `name: artifact` is omitted, the action will create extra parent dir
- pattern: wheels-*
295
path: dist
296
+ pattern: wheels-*
297
merge-multiple: true
298
- - uses: pypa/gh-action-pypi-publish@v1.12.4
- with:
299
- user: __token__
300
- password: ${{ secrets.PYPI_TOKEN }}
+ - uses:
+ pypa/gh-action-pypi-publish@v1.12.4
301
302
# To test: repository_url: https://test.pypi.org/legacy/
0 commit comments