Skip to content

Commit

Permalink
Merge branch 'fix-windows-whl-upload'
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontaigu committed Dec 18, 2020
2 parents 3544c77 + 73df71d commit 86002d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:

- name: Publish to PyPi
if: matrix.os == 'windows-latest'
shell: powershell
run: |
maturin build --release --interpreter python${{ matrix.python-version }}
twine upload -u __token__ -p ${{ secrets.PYPI }} target\wheels\lazrs*.whl
Get-ChildItem -Path target\wheels\*.whl | ForEach-Object { twine upload -u __token__ -p ${{ secrets.PYPI }} "$_" }
- name: Publish to PyPi
if: matrix.os != 'windows-latest'
Expand Down

0 comments on commit 86002d9

Please sign in to comment.