diff --git a/.github/workflows/build-and-push-tutorial-agent.yml b/.github/workflows/build-and-push-tutorial-agent.yml index f58555fe..4b69b36f 100644 --- a/.github/workflows/build-and-push-tutorial-agent.yml +++ b/.github/workflows/build-and-push-tutorial-agent.yml @@ -114,12 +114,6 @@ jobs: echo "agents=$agents_json" >> $GITHUB_OUTPUT echo "has_agents=true" >> $GITHUB_OUTPUT - # Debug outputs - echo "DEBUG: Setting has_agents=true" - echo "DEBUG: agents_json=$agents_json" - echo "DEBUG: GITHUB_OUTPUT contents:" - cat $GITHUB_OUTPUT - echo "" >> $GITHUB_STEP_SUMMARY for agent in "${agents_to_build[@]}"; do echo "- \`$agent\`" >> $GITHUB_STEP_SUMMARY @@ -127,15 +121,6 @@ jobs: echo "" >> $GITHUB_STEP_SUMMARY fi - test-outputs: - needs: [find-agents] - runs-on: ubuntu-latest - steps: - - name: Test outputs - run: | - echo "has_agents: '${{ needs.find-agents.outputs.has_agents }}'" - echo "agents: '${{ needs.find-agents.outputs.agents }}'" - build-agents: needs: [find-agents] if: ${{ needs.find-agents.outputs.has_agents == 'true' }} @@ -148,12 +133,6 @@ jobs: name: build-${{ matrix.agent_path }} steps: - - name: Debug inputs from find-agents - run: | - echo "DEBUG: Received has_agents = '${{ needs.find-agents.outputs.has_agents }}'" - echo "DEBUG: Received agents = '${{ needs.find-agents.outputs.agents }}'" - echo "DEBUG: Current matrix agent = '${{ matrix.agent_path }}'" - - name: Checkout repository uses: actions/checkout@v4