From 30d4f266d073e527206abc72d725da477809a049 Mon Sep 17 00:00:00 2001 From: Christopher Nadler <147471517+cnadler86@users.noreply.github.com> Date: Sun, 29 Sep 2024 12:05:12 +0200 Subject: [PATCH] ESP32.yml aktualisieren --- .github/workflows/ESP32.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ESP32.yml b/.github/workflows/ESP32.yml index 6cc926f..5cade69 100644 --- a/.github/workflows/ESP32.yml +++ b/.github/workflows/ESP32.yml @@ -38,6 +38,7 @@ jobs: # 4. Download and set up ESP-IDF 5.2.x (if not cached) - name: Set up ESP-IDF 5.2.x id: export-idf + if: steps.cache_esp_idf.outputs.cache-hit != 'true' run: | if [ ! -d "esp-idf" ]; then cd ~ @@ -51,6 +52,7 @@ jobs: # 5. Clone the latest MicroPython release (if not cached) - name: Clone MicroPython latest release id: clone-micropython + if: steps.cache_esp_idf.outputs.cache-hit != 'true' run: | if [ ! -d "micropython" ]; then LATEST_RELEASE=$(curl --silent "https://api.github.com/repos/micropython/micropython/releases/latest" | jq -r .tag_name)