Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/kibot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
DRC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki7
image: ghcr.io/inti-cmnb/kicad8_auto:1.6.5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Run KiBot for DRC
Expand All @@ -38,9 +38,9 @@ jobs:
ERC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki7
image: ghcr.io/inti-cmnb/kicad8_auto:1.6.5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Run KiBot for ERC
Expand All @@ -50,9 +50,9 @@ jobs:
runs-on: ubuntu-latest
needs: [ERC, DRC]
container:
image: setsoft/kicad_auto:ki7
image: ghcr.io/inti-cmnb/kicad8_auto:1.6.5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Get Branch Name
Expand All @@ -64,7 +64,7 @@ jobs:
run: |
kibot -c Kicad/docs.kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v
- name: Upload KiBot Output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{success()}}
with:
name: Build-Outputs
Expand Down
Loading