mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-05 07:04:17 -04:00
Added a loop to copy the boards listed in the config file
This commit is contained in:
parent
9fff119897
commit
b30815e11c
3 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,3 @@
|
||||||
keyboard:
|
keyboard:
|
||||||
- 'barbellboards/rollow'
|
- 'barbellboards'
|
||||||
- 'planck'
|
- 'planck'
|
|
@ -12,6 +12,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
qmk_repo: qmk/qmk_firmware
|
qmk_repo: qmk/qmk_firmware
|
||||||
qmk_ref: master
|
qmk_ref: master
|
||||||
|
config-file: ./.github/workflows/Configuration/keyboard_nontree.yaml
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
name: 'QMK Userspace Publish'
|
name: 'QMK Userspace Publish'
|
||||||
|
|
4
.github/workflows/qmk_userspace_build.yml
vendored
4
.github/workflows/qmk_userspace_build.yml
vendored
|
@ -63,7 +63,9 @@ jobs:
|
||||||
|
|
||||||
- name: Copy Non-Tree Keyboards to QMK Firmware
|
- name: Copy Non-Tree Keyboards to QMK Firmware
|
||||||
run: |
|
run: |
|
||||||
cp $GITHUB_WORKSPACE/keyboards/barbellboards $GITHUB_WORKSPACE/qmk_firmware/keyboards -R
|
for kb in '${keyboard[@]}'; do
|
||||||
|
cp $GITHUB_WORKSPACE/keyboards/$kb $GITHUB_WORKSPACE/qmk_firmware/keyboards -R
|
||||||
|
done
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue