From 8e892a2f8816f9792fc0b975ee4362b94122be17 Mon Sep 17 00:00:00 2001 From: Eric Pinzur <2641606+epinzur@users.noreply.github.com> Date: Thu, 31 Jul 2025 15:38:31 +0200 Subject: [PATCH] bug: debug nightly build (#9263) --- .github/workflows/cross-platform-test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/cross-platform-test.yml b/.github/workflows/cross-platform-test.yml index c35079ac0..d5169f8aa 100644 --- a/.github/workflows/cross-platform-test.yml +++ b/.github/workflows/cross-platform-test.yml @@ -20,6 +20,18 @@ on: type: string jobs: + debug-context: + name: Debug Context + runs-on: ubuntu-latest + steps: + - name: Debug workflow context + run: | + echo "Event name: ${{ github.event_name }}" + echo "Langflow version input: '${{ inputs.langflow-version }}'" + echo "Base artifact name: '${{ inputs.base-artifact-name }}'" + echo "Main artifact name: '${{ inputs.main-artifact-name }}'" + echo "Should build condition: ${{ github.event_name == 'workflow_dispatch' && inputs.langflow-version == '' }}" + build-if-needed: name: Build Packages (if no artifacts provided) runs-on: ubuntu-latest