kitspace: Seems it expects gerbers extracted, also missing summary in #14
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: Hawk | |
on: [push, pull_request] | |
jobs: | |
Hawk: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
- name: Compile code | |
run: | | |
python -m pip install --upgrade pip | |
pip install platformio | |
platformio run | |
- if: github.event_name == 'push' | |
name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Hawk | |
path: | | |
.pio/build/hawk/firmware.elf | |
.pio/build/hawk/firmware.bin |