From 682fef11464e9976603766848b517e9a4bafdb09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Tue, 28 May 2024 13:23:50 +0200 Subject: [PATCH] added factory, elf, and map files for all supported platforms (#71) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- .github/workflows/release_rddl.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release_rddl.yaml b/.github/workflows/release_rddl.yaml index e039d5318850..98d0174fb708 100644 --- a/.github/workflows/release_rddl.yaml +++ b/.github/workflows/release_rddl.yaml @@ -39,7 +39,13 @@ jobs: - name: Prepare firmware for upload run: | mv ./build_output/firmware/tasmota32.bin ./build_output/firmware/tasmota32-rddl.bin + mv .pio/build/tasmota32/firmware.elf ./build_output/firmware/tasmota32-rddl.elf + mv ./build_output/firmware/tasmota32.factory.bin ./build_output/firmware/tasmota32-rddl.factory.bin + mv ./build_output/firmware/tasmota32.map.gz ./build_output/firmware/tasmota32-rddl.map.gz mv ./build_output/firmware/tasmota32c3.bin ./build_output/firmware/tasmota32c3-rddl.bin + mv .pio/build/tasmota32c3/firmware.elf ./build_output/firmware/tasmota32c3-rddl.elf + mv ./build_output/firmware/tasmota32c3.factory.bin ./build_output/firmware/tasmota32c3-rddl.factory.bin + mv ./build_output/firmware/tasmota32c3.map.gz ./build_output/firmware/tasmota32c3-rddl.map.gz - name: Release uses: softprops/action-gh-release@v1 @@ -47,7 +53,13 @@ jobs: prerelease: false files: | ./build_output/firmware/tasmota32-rddl.bin + ./build_output/firmware/tasmota32-rddl.elf + ./build_output/firmware/tasmota32-rddl.factory.bin + ./build_output/firmware/tasmota32-rddl.map.gz ./build_output/firmware/tasmota32c3-rddl.bin + ./build_output/firmware/tasmota32c3-rddl.elf + ./build_output/firmware/tasmota32c3-rddl.factory.bin + ./build_output/firmware/tasmota32c3-rddl.map.gz name: ${{ github.event.inputs.tag }} tag_name: ${{ github.event.inputs.tag }} fail_on_unmatched_files: true