From 13affd1010b1ca6e962d95b6c2bcdd2cbe55c7c8 Mon Sep 17 00:00:00 2001 From: henrykironde Date: Tue, 22 Oct 2024 08:45:46 -0400 Subject: [PATCH] Run Twine as non-interactive --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 720fdf46..c3c555a8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -63,6 +63,7 @@ jobs: # Publish to PyPI only if this is a tagged release (no pre-release tags) - script: | python -m pip install --upgrade twine - twine upload dist/* --skip-existing + twine upload --non-interactive dist/* --skip-existing + displayName: 'Publish to PyPI' condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/') \ No newline at end of file