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.
2 parents cf2f0af + 6122470 commit ddf2658Copy full SHA for ddf2658
.github/workflows/publish.yaml
@@ -11,6 +11,10 @@ jobs:
11
12
runs-on: ubuntu-latest
13
14
+ permissions:
15
+ # IMPORTANT: this permission is mandatory for trusted publishing
16
+ id-token: write
17
+
18
steps:
19
- uses: actions/checkout@v2
20
@@ -28,9 +32,11 @@ jobs:
28
32
run: |
29
33
python setup.py sdist bdist_wheel
30
34
31
- - name: Publish
- env:
- TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
- TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
35
- run: |
36
- twine upload dist/*
+ # - name: Publish
+ # env:
37
+ # TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
38
+ # TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
39
+ # run: |
40
+ # twine upload dist/*
41
+ - name: Publish package distributions to PyPI
42
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments