Skip to content

Remove extra mounting holes from PCB and update version number. #40

Remove extra mounting holes from PCB and update version number.

Remove extra mounting holes from PCB and update version number. #40

Workflow file for this run

name: "KiCad CI/CD"
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
workflow_dispatch:
push:
paths:
- '**.kicad_sch'
- '**.kicad_pcb'
- '**.kibot.yaml'
- '.github/workflows/kibot.yml'
pull_request:
paths:
- '**.kicad_sch'
- '**.kicad_pcb'
- '**.kibot.yaml'
- '.github/workflows/kibot.yml'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
kibot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: generate PCB documentation
uses: INTI-CMNB/KiBot@v2_k7
with:
config: kicad/pcb/config.kibot.yaml
dir: 'documentation'
schema: 'kicad/pcb/le_capybara.kicad_sch'
board: 'kicad/pcb/le_capybara.kicad_pcb'
verbose: 0
continue-on-error: true
- name: generate plate files
uses: INTI-CMNB/KiBot@v2_k7
with:
config: kicad/plate/config.kibot.yaml
dir: 'plate/classic'
board: 'kicad/plate/plate.kicad_pcb'
verbose: 0
continue-on-error: true
- name: generate plate files (3 thumbs)
uses: INTI-CMNB/KiBot@v2_k7
with:
config: kicad/plate_36keys/config.kibot.yaml
dir: 'plate/36-keys'
board: 'kicad/plate_36keys/plate_36keys.kicad_pcb'
verbose: 0
continue-on-error: true
- name: generate plate files (asymmetric)
uses: INTI-CMNB/KiBot@v2_k7
with:
config: kicad/plate_asym/config.kibot.yaml
dir: 'plate/asymmetric'
board: 'kicad/plate_asym/plate_asym.kicad_pcb'
verbose: 0
continue-on-error: true
- uses: EndBug/add-and-commit@v9
with:
add: 'plate documentation'
message: '[kibot]'