From 4843751bae37e10aa23350732f147ce62bff5de7 Mon Sep 17 00:00:00 2001 From: cjkas Date: Mon, 6 Apr 2026 20:28:06 +0200 Subject: [PATCH 1/2] Delete .github/workflows/ci.yaml --- .github/workflows/ci.yaml | 51 --------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 8e0a5c1..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,51 +0,0 @@ -name: ESPSomfy-RTS - -on: [push, pull_request] - -jobs: - build: - name: ${{ matrix.name }} - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - include: - - env: esp32dev - name: ESP32 - - env: esp32c3 - name: ESP32-C3 - - env: esp32s3 - name: ESP32-S3 - - env: esp32c6 - name: ESP32-C6 - - steps: - - name: Check out code - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.12" - - - name: Install PlatformIO - run: pip install platformio - - - name: Build ${{ matrix.name }} - run: pio run -e ${{ matrix.env }} - - - name: Build LittleFS image - run: pio run -e ${{ matrix.env }} -t buildfs - - - name: Upload firmware - uses: actions/upload-artifact@v4 - with: - name: ${{ matrix.name }} - path: | - .pio/build/${{ matrix.env }}/firmware.bin - .pio/build/${{ matrix.env }}/firmware.elf - .pio/build/${{ matrix.env }}/partitions.bin - .pio/build/${{ matrix.env }}/bootloader.bin - .pio/build/${{ matrix.env }}/littlefs.bin - retention-days: 5 From 7e6b65bc8daa07f321f70841afcd4d54d37a3229 Mon Sep 17 00:00:00 2001 From: cjkas Date: Mon, 6 Apr 2026 20:30:26 +0200 Subject: [PATCH 2/2] Update ConfigSettings.h --- src/ConfigSettings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ConfigSettings.h b/src/ConfigSettings.h index 3fdc33c..39c8a6d 100644 --- a/src/ConfigSettings.h +++ b/src/ConfigSettings.h @@ -5,7 +5,7 @@ #ifndef configsettings_h #define configsettings_h #include "WResp.h" -// #define FW_VERSION "v2.4.8" + #ifndef FW_VERSION #define FW_VERSION "v0.0.0" // Fallback if app_version.py script fails #endif