We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe99795 commit 0756196Copy full SHA for 0756196
azure-pipelines.yml
@@ -37,10 +37,11 @@ jobs:
37
- task: gitversion/execute@0
38
displayName: Use GitVersion
39
- script: |
40
- python -m pip install pipenv twine
41
- pipenv install
42
- python setup.py sdist twine
43
- 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
44
+ poetry publish
45
- job: GithubRelease
46
dependsOn: build
47
displayName: GithubRelease
0 commit comments