We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a184674 commit 4cd85eeCopy full SHA for 4cd85ee
.github/workflows/build_and_publish.yml
@@ -55,12 +55,15 @@ jobs:
55
publish-to-pypi:
56
needs: [build-sdist, build-wheels]
57
runs-on: ubuntu-latest
58
+ environment:
59
+ name: pypi
60
+ url: https://pypi.org/p/ms2pip
61
+ permissions:
62
+ id-token: write
63
steps:
64
- uses: actions/download-artifact@v2
65
with:
66
name: dist
67
path: dist
- - uses: pypa/gh-action-pypi-publish@release/v1
- with:
- user: ${{ secrets.PYPI_USERNAME }}
- password: ${{ secrets.PYPI_PASSWORD }}
68
+ - name: Publish to PyPI
69
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments