Fix the kibot, update README, move production files to have date #21
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 | |
on: | |
merge_group: | |
pull_request: | |
push: | |
branches: | |
- master | |
# on: | |
# push: | |
# paths: | |
# - '**.kicad_sch' | |
# - '**.kicad_pcb' | |
# pull_request: | |
# paths: | |
# - '**.kicad_sch' | |
# - '**.kicad_pcb' | |
jobs: | |
generate_outputs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- 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_k7 | |
with: | |
# Required - kibot config file | |
config: config.kibot.yaml | |
# optional - prefix to output defined in config | |
dir: output | |
- name: upload results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: output | |
path: output |