From f6c3989d5a55c1ac8d49cb6039c80643a91b60b7 Mon Sep 17 00:00:00 2001 From: LawyZheng Date: Tue, 18 Mar 2025 01:25:21 +0800 Subject: [PATCH] fix gh twine command issue (#1952) --- .github/workflows/sdk-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sdk-release.yml b/.github/workflows/sdk-release.yml index 70e32a04..48988f76 100644 --- a/.github/workflows/sdk-release.yml +++ b/.github/workflows/sdk-release.yml @@ -76,7 +76,7 @@ jobs: env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} - run: twine upload --repository pypi dist/* + run: poetry run twine upload --repository pypi dist/*