Skip to content

Commit 1428556

Browse files
committed
Updating working dirs in yml
Signed-off-by: Ryan Lettieri <[email protected]>
1 parent 570cc9e commit 1428556

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/publish-dts-sdk.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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/*

0 commit comments

Comments
 (0)