From 76787863f111ad114f4706085d5f7faefe858a47 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Sat, 8 Feb 2025 12:55:41 +0100 Subject: [PATCH] Upload firmware after compiling --- .github/workflows/compile-sketch.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile-sketch.yml b/.github/workflows/compile-sketch.yml index 74e2476..e0a1949 100644 --- a/.github/workflows/compile-sketch.yml +++ b/.github/workflows/compile-sketch.yml @@ -25,4 +25,9 @@ jobs: run: pip install --upgrade platformio - name: Build PlatformIO Project - run: cd firmware && pio run \ No newline at end of file + run: cd firmware && pio run + - name: Archive + uses: actions/upload-artifact@v2 + with: + name: firmware + path: firmware/.pio/build/*/firmware.uf2 \ No newline at end of file