We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65d6696 commit 59f75ceCopy full SHA for 59f75ce
.github/workflows/release.yml
@@ -53,16 +53,19 @@ jobs:
53
upload_pypi:
54
needs: [ build_wheels_and_sdist ]
55
runs-on: ubuntu-20.04
56
+ environment:
57
+ name: pypi
58
+ url: https://pypi.org/p/pyhtnorm
59
+ permissions:
60
+ id-token: write
61
steps:
- - name: Pull built wheels and sdist
- uses: actions/download-artifact@v2
62
+ - name: Pull built wheel and sdist
63
+ uses: actions/download-artifact@v3
64
with:
65
name: wheels_and_sdist
66
path: wheelhouse
67
68
- name: Publish to PyPI
- uses: pypa/gh-action-pypi-publish@v1.4.2
69
+ uses: pypa/gh-action-pypi-publish@v1.8.5
70
- user: __token__
- password: ${{ secrets.PYPI_TOKEN }}
71
packages_dir: wheelhouse
0 commit comments