Seperate workflow into steps
This commit is contained in:
parent
783527e141
commit
3f4bb97cc5
|
|
@ -16,6 +16,10 @@ jobs:
|
|||
run: npm install
|
||||
- name: Generate unrouted PCBs
|
||||
run: npm run gen
|
||||
autoroute:
|
||||
name: Autoroute
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Export DSN for Left PCB
|
||||
uses: ./.github/actions/export-dsn
|
||||
with:
|
||||
|
|
@ -58,7 +62,10 @@ jobs:
|
|||
with:
|
||||
pcb_input_file: output/pcbs/right_routed.kicad_pcb
|
||||
drc_output: output/pcbs/right-drc/
|
||||
|
||||
gerbers:
|
||||
name: Generate Gerbers
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Export Gerbers for Left PCB
|
||||
uses: ./.github/actions/export-gerbers
|
||||
with:
|
||||
|
|
|
|||
Loading…
Reference in New Issue