Skip to content

fix: Artifact uploading #4

fix: Artifact uploading

fix: Artifact uploading #4

Workflow file for this run

name: Compile
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
uses: docker://teeed/stm32-toolchain-make-action
- name: Move artifacts
run: mkdir artifacts && cp build/canpybara.bin build/canpybara.hex build/canpybara.elf artifacts/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: binaries
path: artifacts