From 85ac73a75022de1f6e7b6bc3a6ac6ff886534ac1 Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 10 Apr 2024 20:47:40 -0500 Subject: [PATCH] adding jq install back --- .github/workflows/qmk_userspace_build.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/qmk_userspace_build.yml b/.github/workflows/qmk_userspace_build.yml index 3f9b334f..b9bd028a 100644 --- a/.github/workflows/qmk_userspace_build.yml +++ b/.github/workflows/qmk_userspace_build.yml @@ -61,13 +61,20 @@ jobs: run: | qmk userspace-doctor + - name: Install jq + run: | + apt-get update + apt-get install jq + - name: Import Non Tree Targets JSON file id: read_file - run: cat $GITHUB_WORKSPACE/qmk_nontree.json + run: | + cat $GITHUB_WORKSPACE/qmk_nontree.json - name: Parse Non Tree Targets JSON file id: parse-json - run: echo "${{ steps.read_file.outputs.stdout }}" | jq -r '.nontree_targets[]' + run: | + echo "${{ steps.read_file.outputs.stdout }}" | jq -r '.nontree_targets[]' - name: Copy Non-Tree Keyboards to QMK Firmware id: loop-targets