update cd #206
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: build-github-pages | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- '**' | |
jobs: | |
deploy-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install and Build | |
run: | | |
python -m pip install -q mkdocs-material | |
bash tools/site/copy-role-docs.sh | |
mkdocs build --verbose --clean --strict | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
if: github.ref == 'refs/heads/main' | |
with: | |
branch: gh-pages | |
folder: site |