diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 298742e..9b92111 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -37,10 +37,11 @@ jobs: - task: gitversion/execute@0 displayName: Use GitVersion - script: | - python -m pip install pipenv twine - pipenv install - python setup.py sdist twine - python -m twine upload ./dist/* --non-interactive -u __token__ -p $(pypi_token) + curl -sSL https://install.python-poetry.org | python3 - + poetry install + poetry version $(semVer) + poetry build + poetry publish - job: GithubRelease dependsOn: build displayName: GithubRelease