From bf31206c2882e9326c530c28f71bd74665885ed2 Mon Sep 17 00:00:00 2001 From: minimism Date: Mon, 16 Mar 2026 08:40:54 +0000 Subject: [PATCH 1/2] Add dummy file to trigger software builds for PRs --- test.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test.md diff --git a/test.md b/test.md new file mode 100644 index 0000000..7474628 --- /dev/null +++ b/test.md @@ -0,0 +1,3 @@ +# tracking version updates + +1. new file From edcc20a180124276aeb2b2e4a6629397a026d6ac Mon Sep 17 00:00:00 2001 From: minimism Date: Mon, 16 Mar 2026 08:54:44 +0000 Subject: [PATCH 2/2] Fix file paths in GitHub Actions workflow --- .github/workflows/makefile.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 322efc4..63e42d3 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -66,14 +66,14 @@ jobs: git config --global user.email "github-actions@github.com" # Create target directory if it doesn't exist - mkdir -p kastle2-webapps/files/wave-bard-sample-loader/public/firmwares + #mkdir -p kastle2-webapps/wave-bard-sample-loader/public/firmwares # Copy firmware with version (branch name) - cp kastle2/code/build/output/kastle2-wave-bard.uf2 "kastle2-webapps/files/wave-bard-sample-loader/public/firmwares/kastle2-wave-bard-${{ github.ref_name }}.uf2" + cp kastle2/code/build/output/kastle2-wave-bard.uf2 "kastle2-webapps/wave-bard-sample-loader/public/firmwares/kastle2-wave-bard-${{ github.ref_name }}.uf2" # Change to webapps directory and commit cd kastle2-webapps - git add "files/wave-bard-sample-loader/public/firmwares/kastle2-wave-bard-${{ github.ref_name }}.uf2" + git add "wave-bard-sample-loader/public/firmwares/kastle2-wave-bard-${{ github.ref_name }}.uf2" git commit -m "Update wave-bard firmware from ${{ github.ref_name }} branch (commit ${{ github.sha }})" git push