Add optional step for github yaml

This commit is contained in:
Seth K 2023-07-19 16:42:10 -07:00 committed by Seth Kazarians
parent 13d004ac07
commit 3a3637a699
1 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,11 @@ jobs: # List of jobs to be run. Can be used to better organize steps.
- name: Run KiBot
run: |
kibot -e "project_name.kicad_sch"
# Post KiBot steps (Optional).
- name: Optionally do other things
run: |
ECHO Run bash commands to do things like commiting the files or adding them as artifacts
```