From 0b957799474c786d699a45f313f7a41cf9c45547 Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Tue, 4 Feb 2025 14:37:41 +0100 Subject: [PATCH] Move safeboot files in folder "firmware/firmware" --- .github/workflows/Tasmota_build_devel.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Tasmota_build_devel.yml b/.github/workflows/Tasmota_build_devel.yml index 602cd599d..fdfc2abc8 100644 --- a/.github/workflows/Tasmota_build_devel.yml +++ b/.github/workflows/Tasmota_build_devel.yml @@ -247,7 +247,11 @@ jobs: uses: actions/download-artifact@v4 with: pattern: tasmota32* - path: ./firmware + path: ./temp + - name: Move safeboot files + run: | + mkdir -p ./firmware/firmware + find ./temp -type f -exec cp -t ./firmware/firmware {} + - name: Add SHA to footer run: | COMMIT_SHA_LONG=$(git rev-parse --short HEAD || echo "") @@ -287,7 +291,11 @@ jobs: uses: actions/download-artifact@v4 with: pattern: tasmota32* - path: ./firmware + path: ./temp + - name: Move safeboot files + run: | + mkdir -p ./firmware/firmware + find ./temp -type f -exec cp -t ./firmware/firmware {} + - name: Add SHA to footer run: | COMMIT_SHA_LONG=$(git rev-parse --short HEAD || echo "")