File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,13 @@ jobs:
1515 with :
1616 python-version : 3.12
1717 - name : Install dependencies
18+ working-directory : durabletask-azuremanaged
1819 run : |
1920 python -m pip install --upgrade pip
2021 pip install setuptools wheel tox
2122 pip install flake8
2223 - name : Run flake8 Linter
23- working-directory : ./ durabletask-azuremanaged
24+ working-directory : durabletask-azuremanaged
2425 run : flake8 .
2526
2627 publish :
@@ -44,19 +45,19 @@ jobs:
4445 pip install build twine
4546
4647 - name : Build package from directory durabletask-azuremanaged
47- working-directory : ./ durabletask-azuremanaged
48+ working-directory : durabletask-azuremanaged
4849 run : |
4950 python -m build
5051
5152 - name : Check package
52- working-directory : ./ durabletask-azuremanaged
53+ working-directory : durabletask-azuremanaged
5354 run : |
5455 twine check dist/*
5556
5657 - name : Publish package to PyPI
5758 env :
5859 TWINE_USERNAME : __token__
5960 TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN_AZUREMANAGED }} # Store your PyPI API token in GitHub Secrets
60- working-directory : ./ durabletask-azuremanaged
61+ working-directory : durabletask-azuremanaged
6162 run : |
62- twine upload dist/*
63+ twine upload dist/*
You can’t perform that action at this time.
0 commit comments