mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #63807 from twangboy/fix_pypi_upload
Fix upload url for production
This commit is contained in:
commit
3b347fc27d
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ def pypi_upload(ctx: Context, files: list[pathlib.Path], test: bool = False):
|
|||
if test is True:
|
||||
repository_url = "https://test.pypi.org/legacy/"
|
||||
else:
|
||||
repository_url = "https://pypi.org/legacy/"
|
||||
repository_url = "https://upload.pypi.org/legacy/"
|
||||
if "TWINE_USERNAME" not in os.environ:
|
||||
os.environ["TWINE_USERNAME"] = "__token__"
|
||||
if "TWINE_PASSWORD" not in os.environ:
|
||||
|
|
Loading…
Add table
Reference in a new issue