From f02bb8e26053b196d41cd79e1b02c69dcee6db76 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Mon, 24 Mar 2025 10:40:02 -0500 Subject: [PATCH] try to attach files to releases --- .github/workflows/build.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2d1479f..2018d0f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -52,3 +52,11 @@ jobs: name: elf files path: build*/*.elf + - name: Create release + if: startsWith(github.ref, 'refs/tags/') + uses: softprops/action-gh-release@v1 + with: + files: build*/*.uf2 + fail_on_unmatched_files: true + body: "Select a uf2 from the list below." +