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"