From e8a03f9777cd325b16d7c3863991a5820e7628fe Mon Sep 17 00:00:00 2001 From: "Schmieder, Jacob" Date: Wed, 8 May 2024 09:20:53 +0000 Subject: [PATCH] debug build --- .github/workflows/pypi.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index a7faaca..afa235c 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -38,10 +38,17 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ github.event.inputs.branch_name || github.event.workflow_run.head_branch }} + - name: Debug Event Context + run: | + echo "Event Name: ${{ github.event_name }}" + echo "Inputs Branch Name: ${{ github.event.inputs.branch_name }}" + echo "Workflow Run Head Branch: ${{ github.event.workflow_run.head_branch }}" + echo "Ref: ${{ github.ref }}" + echo "GITHUB_REF: $GITHUB_REF" - name: Display Branch Name run: | - echo "Building branch: ${{ github.event.inputs.branch_name || github.event.workflow_run.head_branch }}" - + BRANCH=${{ github.event.inputs.branch_name || github.event.workflow_run.head_branch }} + echo "Building branch: $BRANCH" - name: Set up Python uses: actions/setup-python@v4 with: