From 58377155aa1d85a66c3be76470d4333cec4eed60 Mon Sep 17 00:00:00 2001 From: Chris Reed <55092742+cjreed121@users.noreply.github.com> Date: Sun, 30 Jun 2024 15:07:54 -0400 Subject: [PATCH] Print generated matrix for debug purposes --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index e16cbde..98c298c 100644 --- a/action.yml +++ b/action.yml @@ -22,6 +22,10 @@ runs: id: generate-matrix shell: bash run: echo "matrix=$(python3 ${{ github.action_path }}/bin/generate_matrix.py ${{ inputs.docker-username }} ${{ inputs.base-commit }} ${{ inputs.head-commit }})" >> $GITHUB_OUTPUT + - name: List Matrix + shell: bash + run: | + echo ${{ steps.generate-matrix.outputs.matrix }} - name: Set Run Condition id: set-run-docker shell: bash