diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/publish_pypi.yml similarity index 54% rename from .github/workflows/pypi_publish.yml rename to .github/workflows/publish_pypi.yml index 5f8732b..76a2f74 100644 --- a/.github/workflows/pypi_publish.yml +++ b/.github/workflows/publish_pypi.yml @@ -3,7 +3,7 @@ name: Publish to PyPI on: release: types: - - created + - published jobs: publish: @@ -11,6 +11,11 @@ jobs: permissions: id-token: write steps: + - name: Print release event details (debug) + run: | + echo "Release Tag: ${{ github.event.release.tag_name }}" + echo "Release Name: ${{ github.event.release.name }}" + echo "Release Body: ${{ github.event.release.body }}" - name: Download build artifact uses: actions/download-artifact@v4 with: