Skip to content

Commit

Permalink
Archive hex file
Browse files Browse the repository at this point in the history
  • Loading branch information
LegoYoda112 committed Jan 17, 2024
1 parent 889e2fe commit cfee9a7
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: |
cd bootloader
make -j
- name: Archive build files
uses: actions/upload-artifact@v3
with:
name: build-elf
path: .\build\50x50_Bootloader.elf

0 comments on commit cfee9a7

Please sign in to comment.