forked from genoswitch/hardware
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 944 Bytes
/
kibot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: KiBot
on:
workflow_dispatch:
push:
paths:
- '**.kicad_sch'
- '**.kicad_pcb'
pull_request:
paths:
- '**.kicad_sch'
- '**.kicad_pcb'
jobs:
kibot:
name: genoswitch-rp2040
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # all branches and tags
- uses: INTI-CMNB/KiBot@v2
with:
# Required - kibot config file
config: kibot_generated.kibot.yaml
# optional - prefix to output defined in config
dir: output
# optional - schematic file
schema: 'genoswitch-rp2040/genoswitch-rp2040.kicad_sch'
# optional - PCB design file
board: 'genoswitch-rp2040/genoswitch-rp2040.kicad_pcb'
- name: upload results
uses: actions/upload-artifact@v2
with:
name: output
path: output