Skip to content

Commit 0318f7d

Browse files
committed
change dir
1 parent 165b890 commit 0318f7d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish_pypi.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
- name: Echo
2424
run: echo ${{ steps.tag.outputs.result }}
2525
- name: Install Dependencies
26-
run: pip install -r requirements.txt
26+
run: |
27+
cd sdk
28+
pip install -r requirements.txt
2729
- name: Install Twine
2830
run: |
2931
sudo apt-get update -y
3032
sudo apt-get install -y twine
3133
- name: Build Dist
32-
run: |
33-
cd sdk
34-
python setup.py sdist bdist_wheel
34+
run: python setup.py sdist bdist_wheel
3535
- name: Upload with Twine
3636
run: twine upload dist/* --skip-existing --username ${{ secrets.TWINE_PASSWORD }} --password ${{ secrets.TWINE_USERNAME }}

0 commit comments

Comments
 (0)