From cfee9a70bb5784f91e1c184be3fad10f75f20423 Mon Sep 17 00:00:00 2001 From: Thomas G Date: Tue, 16 Jan 2024 21:12:40 -0600 Subject: [PATCH] Archive hex file --- .github/workflows/build.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 269ef7f..93aaa83 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,20 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checkout repository + uses: actions/checkout@v4 - name: Install build tools - run: sudo apt update && sudo apt install -y gcc-arm-none-eabi gdb-arm-none-eabi - + run: | + sudo apt update + sudo apt install -y gcc-arm-none-eabi gdb-arm-none-eabi - name: Build bootloader - run: cd bootloader && make -j \ No newline at end of file + run: | + cd bootloader + make -j + - name: Archive build files + uses: actions/upload-artifact@v3 + with: + name: build-elf + path: .\build\50x50_Bootloader.elf + \ No newline at end of file