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 cab4270 commit 35c6a7aCopy full SHA for 35c6a7a
.github/workflows/release.yml
@@ -58,18 +58,17 @@ jobs:
58
if: "startsWith(github.ref, 'refs/tags/v')"
59
needs: "build"
60
environment: "pypi"
61
- permissions:
62
- # IMPORTANT: this permission is mandatory for Trusted Publishing
63
- id-token: "write"
64
steps:
65
- name: "Retrieve built package from cache"
66
uses: "actions/download-artifact@v4"
67
with:
68
name: "distfiles"
69
path: "dist/"
70
-
71
- - name: "Publish package distributions to PyPI"
72
- uses: "pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e" # v1.13.0
+ - name: "Push to PyPI"
+ uses: "pypa/gh-action-pypi-publish@release/v1"
+ with:
+ user: "__token__"
+ password: "${{ secrets.PYPI_API_TOKEN }}"
73
74
slack-notify:
75
needs:
0 commit comments