From 25fc898379ff701bdba041df49bcf1398410887e Mon Sep 17 00:00:00 2001 From: Melvin Klein Date: Thu, 31 Oct 2024 10:11:17 +0000 Subject: [PATCH] fix cd pipeline --- .github/workflows/cd.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index c9b02152e..df709a398 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -30,4 +30,5 @@ jobs: - name: Build & Publish to PyPi run: | pip install poetry - poetry publish --build --username="__token__" --no-interaction --password="${{ secrets.PYPI_TOKEN }}" --directory=$SERVICE_PATH \ No newline at end of file + cd $SERVICE_PATH + poetry publish --build --username="__token__" --no-interaction --password="${{ secrets.PYPI_TOKEN }}" \ No newline at end of file