From 540ec1b81667da8b6952579aec628a33f9fc43f2 Mon Sep 17 00:00:00 2001 From: Dev Khant Date: Wed, 5 Mar 2025 17:14:37 +0530 Subject: [PATCH] fix cd (#2314) --- .github/workflows/cd.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 0e98fa85..140fd11c 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -32,14 +32,11 @@ jobs: - name: Build package run: make build - - name: Publish distribution 📦 to Test PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - repository_url: https://test.pypi.org/legacy/ - packages_dir: dist/ + # - name: Publish distribution 📦 to Test PyPI + # uses: pypa/gh-action-pypi-publish@release/v1 + # with: + # repository_url: https://test.pypi.org/legacy/ + # packages_dir: dist/ - name: Publish distribution 📦 to PyPI - if: startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@release/v1 - with: - packages_dir: dist/ \ No newline at end of file + run: make publish \ No newline at end of file