-
-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rebuild examples in documentaiton CI
- Loading branch information
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,16 +11,22 @@ jobs: | |
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: ./.github/actions/setup-kicad | ||
with: | ||
kicad-version: v7 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
- name: Install dependencies | ||
run: | | ||
pip3 install mkdocs-material mike | ||
pip3 install mkdocs-material mike PcbDraw | ||
pip3 install -e . | ||
- name: Setup doc deploy | ||
run: | | ||
git config --global user.name Documentation Bot | ||
git config --global user.email [email protected] | ||
- name: Build docs | ||
run: mike deploy --push --update-aliases upstream | ||
run: | | ||
make -B doc | ||
mike deploy --push --update-aliases upstream |