Skip to content

update test.yml

update test.yml #35

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
jobs:
obi:
runs-on: ubuntu-latest
env:
OBI_PATH = '"Hardware/PCBs/Open Beam Interface/Open Beam Interface"'

Check failure on line 13 in .github/workflows/kicad.yml

View workflow run for this annotation

GitHub Actions / Export KiCad

Invalid workflow file

The workflow is not valid. .github/workflows/kicad.yml (Line: 13, Col: 9): Unexpected value 'OBI_PATH = '"Hardware/PCBs/Open Beam Interface/Open Beam Interface"''
steps:
- uses: actions/checkout@v2
- uses: nerdyscout/kicad-exports@v2.3.1
with:
# Required - kibot config file
config: kibot/kibot.yaml
# optional - prefix to output defined in config
dir: kicad_export
# optional - schematic file
schema: ${OBI_PATH}.sch
# optional - PCB design file
board: ${OBI_PATH}.kicad_pcb
# optional - verbose output info
verbose: 0
- name: upload results
uses: actions/upload-artifact@v2
with:
name: obi_export
path: ${OBI_PATH}/export