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 165b890 commit 0318f7dCopy full SHA for 0318f7d
.github/workflows/publish_pypi.yaml
@@ -23,14 +23,14 @@ jobs:
23
- name: Echo
24
run: echo ${{ steps.tag.outputs.result }}
25
- name: Install Dependencies
26
- run: pip install -r requirements.txt
+ run: |
27
+ cd sdk
28
+ pip install -r requirements.txt
29
- name: Install Twine
30
run: |
31
sudo apt-get update -y
32
sudo apt-get install -y twine
33
- name: Build Dist
- run: |
- cd sdk
34
- python setup.py sdist bdist_wheel
+ run: python setup.py sdist bdist_wheel
35
- name: Upload with Twine
36
run: twine upload dist/* --skip-existing --username ${{ secrets.TWINE_PASSWORD }} --password ${{ secrets.TWINE_USERNAME }}
0 commit comments