diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index 2029e8d..4dd1b54 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -49,7 +49,8 @@ jobs: libraries: | - name: Arduino_DebugUtils sketch-paths: | - - examples/OTA + - examples/OTA_Arduino_Server + - examples/OTA_GitHub_Server - examples/LOLIN_32_Blink - board: type: arduino_esp32 @@ -58,7 +59,8 @@ jobs: libraries: | - name: Arduino_DebugUtils sketch-paths: | - - examples/OTA + - examples/OTA_Arduino_Server + - examples/OTA_GitHub_Server - examples/NANO_ESP32_Blink steps: diff --git a/examples/OTA_GitHub_Server/OTA_GitHub_Server.ino b/examples/OTA_GitHub_Server/OTA_GitHub_Server.ino index 9673c79..7f82b63 100644 --- a/examples/OTA_GitHub_Server/OTA_GitHub_Server.ino +++ b/examples/OTA_GitHub_Server/OTA_GitHub_Server.ino @@ -40,7 +40,7 @@ static char const PASS[] = SECRET_PASS; /* your network password (use for WPA, #if defined(ARDUINO_NANO_ESP32) static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/NANO_ESP32_Blink/NANO_ESP32_Blink.ino.ota"; #else -static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/LOLIN_32_Blink/LOLIN_32_Blink.ino.ota" +static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/LOLIN_32_Blink/LOLIN_32_Blink.ino.ota"; #endif /******************************************************************************