Load into KiCad #150
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: Load into KiCad | |
on: | |
# runs on push to every branch | |
push: | |
# runs every monday at 6:21 UTC+0 | |
schedule: | |
- cron: '21 6 * * MON' | |
# allow triggers via button click | |
workflow_dispatch: | |
jobs: | |
load_into_kicad: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update -qq | |
- run: sudo apt-get install -qq -y software-properties-common | |
- run: sudo add-apt-repository -y ppa:kicad/kicad-6.0-releases | |
- run: sudo apt-get update -qq | |
- run: sudo apt-get install -qq -y --no-install-recommends kicad | |
- run: ./init | |
- run: ./update | |
- run: python3 load_all.py | |
- run: python3 rewrite_3d_model_paths.py | |
- run: python3 load_all.py |