File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,18 +38,18 @@ jobs:
38
38
- name : Publish distribution 📦 to Test PyPI
39
39
# if: startsWith(github.ref, 'refs/tags')
40
40
run : |
41
- #twine upload --repository testpypi wheelhouse/* --verbose
42
- twine upload --repository testpypi dist/*.tar.gz --verbose
41
+ #twine upload --skip-existing -- repository testpypi wheelhouse/* --verbose
42
+ twine upload --skip-existing-- repository testpypi dist/*.tar.gz --verbose
43
43
44
44
env :
45
45
TWINE_USERNAME : __token__
46
46
TWINE_PASSWORD : ${{ secrets.TEST_PYPI_PASSWORD }}
47
47
48
48
49
49
- name : Publish distribution 📦 to PyPI
50
- if : startsWith(github.ref, 'refs/tags')
50
+ # if: startsWith(github.ref, 'refs/tags')
51
51
run : |
52
- twine upload wheelhouse/* --verbose
52
+ twine upload --skip-existing wheelhouse/* --verbose
53
53
env :
54
54
TWINE_USERNAME : __token__
55
55
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
You can’t perform that action at this time.
0 commit comments