From 521a33e8804dc780d2abfdb12442b8d12f9c8fa3 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 16 Dec 2021 22:04:51 -0800 Subject: [PATCH] Store build artifacts --- .github/workflows/build.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 369787fc..c8cf2b64 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,15 +6,20 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - + - name: Build with Arduino-CLI run: bash ci/build-arduino.sh - + pio-build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - + - name: Build with PlatformIO run: bash ci/build-platformio.sh + + - uses: actions/upload-artifact@v2 + with: + name: firmware + path: .pio/build/*/firmware.bin