From 160a01c5418aada7e7813e7fc6e1d1e450c975ac Mon Sep 17 00:00:00 2001 From: Ruffalo Lavoisier Date: Sat, 23 Nov 2024 06:40:30 +0900 Subject: [PATCH] workflows: upload firmware binary --- .github/workflows/test-OS.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test-OS.yml b/.github/workflows/test-OS.yml index a4f97fa66..534b62e25 100644 --- a/.github/workflows/test-OS.yml +++ b/.github/workflows/test-OS.yml @@ -75,3 +75,8 @@ jobs: run: mv include/config.h.example include/config.h - name: Compile language ${{ matrix.language }} model ${{ matrix.model }} run: python3 .github/buildFirmware.py -l "${{ matrix.language }}" -m "${{ matrix.model }}" -b debug + - name: Upload ${{ matrix.os }} firmware artifacts + uses: actions/upload-artifact@v3 + with: + name: firmwares-${{ matrix.os }} + path: "*.bin" \ No newline at end of file