From 0feb0045d0edf6ecef9d352e512b3b31a25e66df Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 18 Jun 2024 19:36:17 -0400 Subject: [PATCH] build update --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7364f81..85c245c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,7 +95,7 @@ jobs: run: | if [ "${{ matrix.target.chip }}" == "esp32" ]; then python installer/bin/esptool/esptool.py --chip esp32 merge_bin \ - -o installer/web_factory_${{ matrix.target.name }}.bin \ + -o installer/web_factory.bin \ --flash_mode dio \ --flash_freq 40m \ --flash_size 4MB \ @@ -106,7 +106,7 @@ jobs: 0x3D0000 installer/firmware/spiffs.bin elif [ "${{ matrix.target.chip }}" == "esp32s3" ]; then python installer/bin/esptool/esptool.py --chip esp32s3 merge_bin \ - -o installer/web_factory_${{ matrix.target.name }}.bin \ + -o installer/web_factory.bin \ --flash_mode dio \ --flash_freq 40m \ --flash_size 8MB \ @@ -117,7 +117,7 @@ jobs: 0x3D0000 installer/firmware/spiffs.bin elif [ "${{ matrix.target.chip }}" == "esp32c3" ]; then python installer/bin/esptool/esptool.py --chip esp32c3 merge_bin \ - -o installer/web_factory_${{ matrix.target.name }}.bin \ + -o installer/web_factory.bin \ --flash_mode dio \ --flash_freq 40m \ --flash_size 4MB \