From 301ddc7c7e435a4b335247b61b2fc40273c24903 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sun, 30 Nov 2025 20:07:44 -0800 Subject: [PATCH] fix: correct build file paths in GitHub Actions workflow for firmware uploads --- .github/workflows/custom_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/custom_build.yml b/.github/workflows/custom_build.yml index 4ba6591..14cc74a 100644 --- a/.github/workflows/custom_build.yml +++ b/.github/workflows/custom_build.yml @@ -142,10 +142,10 @@ jobs: update_status uploading_firmware # Determine file extension based on target (most are .bin, some might be .uf2) - BUILD_FILE="firmware/.pio/build/${{ inputs.target }}/firmware.bin" + BUILD_FILE=".pio/build/${{ inputs.target }}/firmware.bin" FILE_EXT=".bin" if [ ! -f "$BUILD_FILE" ]; then - BUILD_FILE="firmware/.pio/build/${{ inputs.target }}/firmware.uf2" + BUILD_FILE=".pio/build/${{ inputs.target }}/firmware.uf2" FILE_EXT=".uf2" fi