Adds ADE7912 #9
Workflow file for this run
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: π Build docker image | |
run: docker build --tag ${IMAGE_TAG} .pipeline | |
- 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" |