From ad9976f0b47f8bf32008a256db9a322c2ec511a0 Mon Sep 17 00:00:00 2001 From: David Huser Date: Thu, 5 Dec 2024 11:28:14 +0100 Subject: [PATCH] cicd: fix publish --- .github/workflows/publish.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 47ad925..395ad80 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,5 +28,12 @@ jobs: run: uv build # Using Trusted Publishing via PyPI and uv - - name: Publish - run: uv publish --verbose --trusted-publishing always + - name: Debug and Publish + run: | + echo "Current directory: $(pwd)" + echo "Workflow file contents:" + cat .github/workflows/publish.yml + echo "Environment variables:" + env | grep -i action + echo "Running publish command..." + uv publish --verbose --trusted-publishing always