mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-04 14:44:16 -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:
|
||||
- 'barbellboards/rollow'
|
||||
- 'barbellboards'
|
||||
- 'planck'
|
|
@ -12,6 +12,7 @@ jobs:
|
|||
with:
|
||||
qmk_repo: qmk/qmk_firmware
|
||||
qmk_ref: master
|
||||
config-file: ./.github/workflows/Configuration/keyboard_nontree.yaml
|
||||
|
||||
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
|
||||
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
|
||||
run: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue