Skip to content

Update kicad.yml

Update kicad.yml #16

Workflow file for this run

name: Export KiCad
on:
push:
paths:
- '**.sch'
- '**.kicad_pcb'
- '.github/**.yml' # Trigger on changes to the workflow file
- '**.kibot.yml' # Trigger on changes to the KiBot config file used in the workflow
# To allow for manual triggering from the Action console, add workflow_dispatch
workflow_dispatch:
inputs:
name:
description: 'Kicad export'
required: false
default: 'Manual test run'
jobs:
obi:
runs-on: ubuntu-latest
container: ghcr.io/inti-cmnb/kicad8_auto:1.6.4
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Export Kicad files
run: |
cd 'Hardware/PCBs/Open Beam Interface'
kibot -c ../../../.github/workflows/kibot/kibot.yaml -e 'Open Beam Interface.kicad_sch' -b 'Open Beam Interface.kicad_pcb' -d 'Open Beam Interface'
# - name: Upload Artifacts
# uses: actions/upload-artifact@v2
# with:
# name:
# path:
# if-no-files-found: error
# retention-days: 60