Skip to content

Update to github actions #1

Update to github actions

Update to github actions #1

Workflow file for this run

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:

Check failure on line 12 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
# 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