Skip to content

Commit

Permalink
[misc] Fix github action pypi deploy.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Duburcq committed Mar 11, 2023
1 parent 12452ce commit 4154417
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,9 @@ jobs:
name: wheelhouse
path: wheelhouse
- name: Publish the wheel
uses: pypa/gh-action-pypi-publish@v1.6
uses: pypa/gh-action-pypi-publish@v1.7.1
with:
user: __token__
password: ${{ secrets.PYPI_DEPLOY }}
packages_dir: wheelhouse
packages-dir: wheelhouse
verify-metadata: false
5 changes: 3 additions & 2 deletions .github/workflows/manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,9 @@ jobs:
name: wheelhouse
path: wheelhouse
- name: Publish the wheels on PyPi
uses: pypa/gh-action-pypi-publish@v1.6
uses: pypa/gh-action-pypi-publish@v1.7.1
with:
user: __token__
password: ${{ secrets.PYPI_DEPLOY }}
packages_dir: wheelhouse
packages-dir: wheelhouse
verify-metadata: false
5 changes: 3 additions & 2 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,9 @@ jobs:
name: wheelhouse
path: wheelhouse
- name: Publish on PyPi the wheels
uses: pypa/gh-action-pypi-publish@v1.6
uses: pypa/gh-action-pypi-publish@v1.7.1
with:
user: __token__
password: ${{ secrets.PYPI_DEPLOY }}
packages_dir: wheelhouse
packages-dir: wheelhouse
verify-metadata: false

0 comments on commit 4154417

Please sign in to comment.