feat: Green light on open door (#3) #3
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
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/[email protected] | |
with: | |
name: binaries | |
path: artifacts |