Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.

Commit 72aec22

Browse files
committed
Fix action syntax.
1 parent efdc4da commit 72aec22

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ jobs:
66
steps:
77
- name: 'Rendering PDF'
88
uses: docker://productize/kicad-automation-scripts
9-
run: python -m kicad-automation.eeschema.schematic export -f pdf -a ./neotron-32.sch ./pdf
9+
with:
10+
entrypoint: python
11+
args: -m kicad-automation.eeschema.schematic export -f pdf -a ./neotron-32.sch ./pdf
1012
- name: Archive Schematic PDF
1113
uses: actions/upload-artifact@v1
1214
with:
@@ -17,7 +19,9 @@ jobs:
1719
steps:
1820
- name: 'Running ERC'
1921
uses: docker://productize/kicad-automation-scripts
20-
run: python -m kicad-automation.eeschema.schematic run_erc ./neotron-32.sch ./erc
22+
with:
23+
entrypoint: python
24+
args: -m kicad-automation.eeschema.schematic run_erc ./neotron-32.sch ./erc
2125
- name: Archive ERC results
2226
uses: actions/upload-artifact@v1
2327
with:

0 commit comments

Comments
 (0)