Fix release.yml (#4100)
Browse files### What problem does this PR solve?
Fix release.yml
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
.github/workflows/release.yml
CHANGED
@@ -119,6 +119,6 @@ jobs:
|
|
119 |
if: startsWith(github.ref, 'refs/tags/v')
|
120 |
uses: pypa/gh-action-pypi-publish@release/v1
|
121 |
with:
|
122 |
-
packages-dir: dist/
|
123 |
password: ${{ secrets.PYPI_API_TOKEN }}
|
124 |
verbose: true
|
|
|
119 |
if: startsWith(github.ref, 'refs/tags/v')
|
120 |
uses: pypa/gh-action-pypi-publish@release/v1
|
121 |
with:
|
122 |
+
packages-dir: sdk/python/dist/
|
123 |
password: ${{ secrets.PYPI_API_TOKEN }}
|
124 |
verbose: true
|