Skip to content

Add files via upload #4

Add files via upload

Add files via upload #4

Workflow file for this run

name: "KiBot Automation"
# Triggers when code is pushed to the repository (if schematics or PCB layout changed)
on:
push:
paths:
- '**.kicad_sch'
- '**.kicad_pcb'
jobs:
export:
runs-on: ubuntu-latest
steps:
# 1. Checkout the project repository
- name: Checkout Code
uses: actions/checkout@v4
# 2. Run KiBot (automatically finds your project files and runs default exports)
- name: Run KiBot
uses: INTI-CMNB/KiBot@v2
with:
dir: 'output' # Target folder for your exports
# 3. Upload the generated files as a downloadable zip archive in GitHub
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: Manufacturing-Data
path: output