From e4a28b4e39d7d972e564a1257e6b6d118ad84d86 Mon Sep 17 00:00:00 2001 From: awalol Date: Wed, 29 Apr 2026 19:30:41 +0800 Subject: [PATCH] update build.yml --- .github/workflows/build.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e2d801..a28edb3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,9 +63,16 @@ jobs: cmake --build build/dse --target ds5-bridge cp build/dse/ds5-bridge.uf2 artifacts/ds5-bridge-dse.uf2 - - name: Upload UF2 artifacts - uses: actions/upload-artifact@v4 + - name: Upload standard UF2 artifact + uses: actions/upload-artifact@v7 with: - name: ds5-bridge-uf2 - path: artifacts/*.uf2 + path: artifacts/ds5-bridge.uf2 + archive: false + if-no-files-found: error + + - name: Upload DSE UF2 artifact + uses: actions/upload-artifact@v7 + with: + path: artifacts/ds5-bridge-dse.uf2 + archive: false if-no-files-found: error