- added json file with copy targets - added a bunch of steps to load/parse hte json file - altered my copy command to loop through array
20 lines
431 B
YAML
20 lines
431 B
YAML
name: Build Non-Tree QMK firmware
|
|
|
|
on: [push, workflow_dispatch]
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
name: 'QMK Userspace Build'
|
|
uses: ./.github/workflows/qmk_userspace_build.yml
|
|
with:
|
|
qmk_repo: qmk/qmk_firmware
|
|
qmk_ref: master
|
|
|
|
publish:
|
|
name: 'QMK Userspace Publish'
|
|
uses: qmk/.github/.github/workflows/qmk_userspace_publish.yml@main
|
|
if: always() && !cancelled()
|
|
needs: build
|