From 2b72f47571c3c70254a463c48925376c3ffca3a7 Mon Sep 17 00:00:00 2001 From: Conor Patrick Date: Sat, 18 Sep 2021 18:58:37 -0500 Subject: [PATCH] add back .bin build step --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e572d573..7c82a479 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,6 +61,10 @@ jobs: - name: Size run: | cargo size --release --features ${{ matrix.board }} + - name: Artifacts for firmware bundle + run: | + cargo objcopy --release --features ${{ matrix.board }} -- -O binary firmware-${{ matrix.board }}.bin + sudo cp *.bin / - name: Upload Firmware uses: actions/upload-artifact@v2 continue-on-error: true