From 388919a4a0d6aac53c101840100387316676f527 Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 10 Apr 2024 21:54:33 -0500 Subject: [PATCH] adding debug statements --- .github/workflows/qmk_userspace_build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/qmk_userspace_build.yml b/.github/workflows/qmk_userspace_build.yml index d804babf..3590cfcf 100644 --- a/.github/workflows/qmk_userspace_build.yml +++ b/.github/workflows/qmk_userspace_build.yml @@ -69,11 +69,12 @@ jobs: - name: Parse Non Tree Targets JSON file id: parse-json run: | - targets = $(cat $GITHUB_WORKSPACE/qmk_nontree.json) | jq -r '.nontree_targets[]' + targets=$( cat $GITHUB_WORKSPACE/qmk_nontree.json ) | jq -r '.nontree_targets[]' echo "::set-output name=copy_targets::$targets" - name: Copy Non-Tree Keyboards to QMK Firmware run: | + echo ${{ steps.parse-json.outputs.copy_targets }} for target in ${{ steps.parse-json.outputs.copy_targets }}; do echo "Copying keyboard: $target"