Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
Fix PyPI uploads on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikerRUS committed Jan 30, 2022
1 parent d3e3008 commit c048ffb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,11 @@ jobs:
dist/*.tar.gz
- name: Create PyPI Release
if: startsWith(github.ref, 'refs/tags/')
shell: bash
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
pip install twine
rm -f dist/*.egg
twine upload dist/*
twine upload --skip-existing dist/*

0 comments on commit c048ffb

Please sign in to comment.