workflow refactor to used shared build file

This commit is contained in:
Will Tatam 2024-11-27 10:33:44 +00:00
parent 7ece14ff3f
commit bc79f44a26
2 changed files with 16 additions and 3 deletions

View File

@ -1,7 +1,9 @@
name: WLED CI
on: [push, pull_request]
name: WLED Build
# Only included into other workflows
on:
workflow_call:
jobs:
get_default_envs:

11
.github/workflows/wled-ci.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: WLED CI
on:
push:
branches:
- '*'
pull_request:
jobs:
wled_build:
uses: ./.github/workflows/build.yml