Remove (duplicate) Combo 14 #101
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: Firmware | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
paths: | |
- Makefile | |
- Reflex/** | |
jobs: | |
build: | |
name: Build Firmware Combinations | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Arduino CLI | |
uses: arduino/setup-arduino-cli@v1 | |
- name: Install arduino platform | |
run: arduino-cli core install arduino:avr | |
- name: Build All | |
run: make all | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: firmware | |
path: firmware/ |