- no longer have two separate build actions files - made variable names more clear - able to parse the array properly now and copy the files - non-tree boards are able to compile
21 lines
492 B
YAML
Executable file
21 lines
492 B
YAML
Executable file
name: Build QMK firmware
|
|
|
|
on: [push, workflow_dispatch]
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
name: 'QMK Userspace Build'
|
|
#uses: qmk/.github/.github/workflows/qmk_userspace_build.yml@main
|
|
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
|