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

Commit c048ffb

Browse files
committed
Fix PyPI uploads on Windows
1 parent d3e3008 commit c048ffb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,11 @@ jobs:
132132
dist/*.tar.gz
133133
- name: Create PyPI Release
134134
if: startsWith(github.ref, 'refs/tags/')
135+
shell: bash
135136
env:
136137
TWINE_USERNAME: __token__
137138
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
138139
run: |
139140
pip install twine
140141
rm -f dist/*.egg
141-
twine upload dist/*
142+
twine upload --skip-existing dist/*

0 commit comments

Comments
 (0)