From 911a6ea292d97c3fe01712d20bfed33480c1435b Mon Sep 17 00:00:00 2001 From: windowsair Date: Tue, 24 May 2022 14:51:18 +0800 Subject: [PATCH] ci: ESPTool deprecates older versions of Python --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c679ee9..4707a21 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -50,7 +50,7 @@ jobs: if: steps.script.outputs.status == 'success' && !cancelled() run: | git clone https://github.com/espressif/esptool.git - ./esptool/esptool.py --chip esp8266 merge_bin -o build/esp8266_dap_full.bin 0x0 build/bootloader/bootloader.bin 0x8000 build/partition_table/partition-table.bin 0x10000 build/esp8266_dap.bin + python3 ./esptool/esptool.py --chip esp8266 merge_bin -o build/esp8266_dap_full.bin 0x0 build/bootloader/bootloader.bin 0x8000 build/partition_table/partition-table.bin 0x10000 build/esp8266_dap.bin mv build/esp8266_dap.bin build/esp8266_dap_app.bin echo "::set-output name=status::success"