diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d5ea76..d0bc27f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,6 +26,6 @@ jobs: with: files: | .pio/build/esp32doit-devkit-v1/firmware.bin - .pio/build/esp32doit-devkit-v1/firmware-nocertcheck.bin + .pio/build/esp32doit-devkit-v1-nocertcheck/firmware-nocertcheck.bin env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/main.cpp b/src/main.cpp index 6cebacd..6c73743 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -32,7 +32,7 @@ #define DEFAULT_ERROR_RETRY_INTERVAL 30 // Default interval to try again after errors #define TOKEN_REFRESH_TIMEOUT 60 // Number of seconds until expiration before token gets refreshed #define CONTEXT_FILE "/context.json" // Filename of the context file -#define VERSION "0.16.1" // Version of the software +#define VERSION "0.16.2" // Version of the software #define DBG_PRINT(x) Serial.print(x) #define DBG_PRINTLN(x) Serial.println(x)