Skip to content

Commit

Permalink
add BOM export to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zainahm3d committed Jul 3, 2023
1 parent eaff921 commit 0b529e9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/kicad-export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
mkdir output/schem-pdf
for file in *.kicad_sch; do kicad-cli sch export pdf --output output/schem-pdf/$(basename "$file" .kicad_sch).pdf "$file"; done
- name: Export BOM
run: |
mkdir output/bom
for file in *.kicad_sch; do kicad-cli sch export python-bom --output output/bom/$(basename "$file" .kicad_sch).xml "$file"; done
- name: Export PCB PDFs
run: |
mkdir output/pcb-pdf
Expand Down

0 comments on commit 0b529e9

Please sign in to comment.