Fix CI errors by moving to KiCAD 8 #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Outputs for Review | |
permissions: | |
contents: read | |
on: | |
merge_group: | |
pull_request: | |
jobs: | |
build: | |
name: Generate Outputs for Review | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: gitmarker | |
run: "for i in *.kicad_pcb; do git rev-parse --short HEAD | xargs -I % sed -i 's/{GITHASH}/%/g' $i; done" # add git marker | |
- uses: INTI-CMNB/KiBot@v2_k8 | |
with: | |
# Required - kibot config file | |
config: config.kibot.yaml | |
# optional - prefix to output defined in config | |
dir: output | |
- name: Upload temporary artifacts for review | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output | |
path: output |