From eccd309a6191bd9c38869f174c769d8981076fef Mon Sep 17 00:00:00 2001 From: Jonas Niesner Date: Sat, 2 Sep 2023 16:17:17 +0200 Subject: [PATCH] Add NRF firmware building to release scripts --- .github/workflows/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 344e5b11..191a4773 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,15 @@ jobs: - name: Install PlatformIO Core run: pip install --upgrade platformio - + + - name: Build NRF firmware + run: | + cd ARM_Tag_FW/Newton_M3_nRF52811 + pio run --environment Newton_M3_29_BWR + pio run --environment Newton_M3_75_BWR + cp .pio/build/Newton_M3_29_BWR/firmware.hex /home/runner/work/OpenEPaperLink/OpenEPaperLink/binaries/Newton_M3_29_BWR.hex + cp .pio/build/Newton_M3_75_BWR/firmware.hex //home/runner/work/OpenEPaperLink/OpenEPaperLink/binaries/Newton_M3_75_BWR.hex + - name: Install esptool run: pip install esptool