feat(hw): Adds PV module voltage and current sensing (#3) #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: π€ KiCad Export | |
on: | |
push: | |
branches: ["**"] | |
paths: ["**/*.kicad_*"] | |
permissions: | |
contents: write | |
env: | |
IMAGE_TAG: pipeline | |
defaults: | |
run: | |
working-directory: hardware/KiCad | |
jobs: | |
kicad-export: | |
name: π€ KiCad Export | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v4 | |
- name: π Install just | |
uses: extractions/setup-just@v1 | |
- name: 1οΈβ£ OpenMI | |
run: just export OpenMI | |
- name: π¬ Commit & Push | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: "chore: π€ KiCad export" |