From 477f2e1d814961cdf578d22bb68876d890d77f63 Mon Sep 17 00:00:00 2001 From: Rastislav Vysoky Date: Fri, 7 Mar 2025 13:17:46 +0100 Subject: [PATCH] fix: added t114 and t-echo boards to uf2conv release workflow --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index d3ce6d4..f14b2f1 100644 --- a/build.sh +++ b/build.sh @@ -57,8 +57,8 @@ build_firmware() { pio run -t mergebin -e $1 fi - # build .uf2 for RAK_4631 and t1000e - if [[ $1 == *"RAK_4631"* || $1 == *"t1000e"* ]]; then + # build .uf2 for nrf52 boards + if [[ $1 == *"RAK_4631"* || $1 == *"t1000e"* || $1 == *"t114"* || $1 == *"T-Echo"* ]]; then python bin/uf2conv/uf2conv.py .pio/build/$1/firmware.hex -c -o .pio/build/$1/firmware.uf2 -f 0xADA52840 fi