Rename job #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Author lea_calot | |
# | |
name: FirmwareBuild | |
on: | |
push: | |
branches: [ ] | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
jobs: | |
build_firmware: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc) | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
with: | |
release: '11.2-2022.02' | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
path: NeoDK | |
- name: Install arm-none-eabi-gcc | |
run: | | |
arm-none-eabi-gcc --version | |
which arm-none-eabi-gcc | |