From 044bb0334b7ab1dfca8bd5c9215599c10463b46c Mon Sep 17 00:00:00 2001 From: Zhichang Yu Date: Wed, 18 Dec 2024 17:23:29 +0800 Subject: [PATCH] Fix release.yml (#4100) ### 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3156dea00..fe6414fd6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -119,6 +119,6 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') uses: pypa/gh-action-pypi-publish@release/v1 with: - packages-dir: dist/ + packages-dir: sdk/python/dist/ password: ${{ secrets.PYPI_API_TOKEN }} verbose: true