From 21d38de83c4204553195929901c0c1fe5aff59e1 Mon Sep 17 00:00:00 2001 From: xia__mc <2052472631@qq.com> Date: Fri, 13 Dec 2024 21:10:01 +0800 Subject: [PATCH] Fix workflow --- upload.cmd | 2 +- upload.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/upload.cmd b/upload.cmd index 2018533..0e67f7c 100644 --- a/upload.cmd +++ b/upload.cmd @@ -1,3 +1,3 @@ python setup.py clean python setup.py sdist bdist_wheel -twine upload --repository pypi dist/* +twine upload --repository pypi --skip-existing dist/* diff --git a/upload.sh b/upload.sh index ccad59b..498d26f 100644 --- a/upload.sh +++ b/upload.sh @@ -1,4 +1,4 @@ #!/bin/bash python ./setup.py clean python ./setup.py sdist bdist_wheel -twine upload --repository pypi dist/* +twine upload --repository pypi --skip-existing dist/*