Update to github actions #1
Workflow file for this run
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
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Set up repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: false | ||
show-progress: false | ||
- name: Set up compiler | ||
uses: carlosperate/arm-none-eabi-gcc-action@v1 | ||
with: | ||
# When changing this update what Windows grabs too! | ||
release: '13.2.Rel1' | ||
- name: Build | ||
run: make -j$(nproc) all-boards | ||
- name: Rename release assets | ||
run: | | ||
mkdir dist | ||
cp build/*/*.uf2 dist/ | ||
cp build/*/*.bin dist/ | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist | ||