fix(blog): Add note about DTS output step.

* The DTS output step needs to be removed for the builds.
This commit is contained in:
Peter Johanson 2022-04-03 05:10:37 +00:00
parent af4753cae1
commit 140c9c546d
1 changed files with 9 additions and 0 deletions

View File

@ -27,6 +27,15 @@ Existing user config repositories using Github Actions to build will pull down Z
- Open `.github/workflows/build.yml` in your editor/IDE
- Change `zmkfirmware/zmk-build-arm:2.5` to `zmkfirmware/zmk-build-arm:stable` wherever it is found
- Locate and delete the lines for the DTS output step, which is no longer needed:
```
- name: ${{ steps.variables.outputs.display-name }} DTS File
if: ${{ always() }}
run: |
if [ -f "build/zephyr/${{ matrix.board }}.pre.tmp" ]; then cat -n build/zephyr/${{ matrix.board }}.pre.tmp; fi
if [ -f "build/zephyr/zephyr.dts" ]; then cat -n build/zephyr/zephyr.dts; fi
```
:::note