mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-04 22:54:16 -04:00
adding jq install back
This commit is contained in:
parent
c0e39be264
commit
85ac73a750
1 changed files with 9 additions and 2 deletions
11
.github/workflows/qmk_userspace_build.yml
vendored
11
.github/workflows/qmk_userspace_build.yml
vendored
|
@ -61,13 +61,20 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
qmk userspace-doctor
|
qmk userspace-doctor
|
||||||
|
|
||||||
|
- name: Install jq
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install jq
|
||||||
|
|
||||||
- name: Import Non Tree Targets JSON file
|
- name: Import Non Tree Targets JSON file
|
||||||
id: read_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
|
- name: Parse Non Tree Targets JSON file
|
||||||
id: parse-json
|
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
|
- name: Copy Non-Tree Keyboards to QMK Firmware
|
||||||
id: loop-targets
|
id: loop-targets
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue