From 0bf0bebe018d20bb1a55b76c99f961a6606207f7 Mon Sep 17 00:00:00 2001 From: k12ish Date: Fri, 10 May 2024 14:41:03 +0100 Subject: [PATCH] fix warnings, update version of arduino-cli --- .github/workflows/firmware.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/firmware.yml b/.github/workflows/firmware.yml index 1998d92..076e077 100644 --- a/.github/workflows/firmware.yml +++ b/.github/workflows/firmware.yml @@ -53,7 +53,7 @@ jobs: # use the `arduino/setup-arduino-cli` action to install/configure the Arduino CLI - name: Setup Arduino CLI - uses: arduino/setup-arduino-cli@v1.1.1 + uses: arduino/setup-arduino-cli@v1.1.2 # We then install the platform, which one will be determined # dynamically by the build matrix. @@ -62,14 +62,13 @@ jobs: arduino-cli core update-index arduino-cli core install ${{ matrix.arduino-platform }} - # Finally, we compile the sketch, using the FQBN that was set in the build matrix. + # Compile using the FQBN that was set in the build matrix. - name: Compile Firmware run: | mkdir ./firmware/release/ arduino-cli compile --fqbn ${{ matrix.fqbn }} ./firmware/firmware.ino --warnings more --output-dir ./firmware/release/ - # upload released assets to Github -- not sure how this interacts with build: strategy: matrix - uses: actions/upload-artifact@v4 with: - name: Build Assets + name: "compiled-firmware-${{ matrix.fqbn }}" path: ./firmware/release