diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-16 22:57:20 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-16 22:58:26 -0400 |
commit | 33795b99ca9ba2370a26a13784bd453fb5d9a558 (patch) | |
tree | 083af722a0f7d1b435fc2829c189d65a4c4081fe | |
parent | 05591ff37bad4701cdebe68e61b74ad4f4b45f26 (diff) |
Change the kernel bin name, upload built UF2.
-rw-r--r-- | .github/workflows/build.yml | 6 | ||||
-rw-r--r-- | app/prj.conf | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a703643..7f2b0cc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,3 +54,9 @@ jobs: id: west-build with: args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=petejohanson_proton_handwire"' + - name: Archive Build + uses: actions/upload-artifact@v2 + if: ${{ matrix.board == "nice_nano "}} + with: + name: zmk-uf2 + path: build/zephyr/zmk.uf2 diff --git a/app/prj.conf b/app/prj.conf index c4d6d35..f5b2d4a 100644 --- a/app/prj.conf +++ b/app/prj.conf @@ -1,2 +1,3 @@ # CONFIG_LOG=y # CONFIG_ZMK_LOG_LEVEL_DBG=y +CONFIG_KERNEL_BIN_NAME="zmk" |