Merge branch 'master' into mashp2787 #8472
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 Documentation | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
jobs: | |
deploy-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2.3.1 | |
- name: Install and Build | |
run: | | |
bash build/bin/copy-role-docs.sh | |
python -m pip install -q mkdocs mkdocs-carbon mkdocs-glightbox | |
mkdocs build --verbose --clean --strict | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@4.1.7 | |
if: github.ref == 'refs/heads/master' | |
with: | |
branch: gh-pages | |
folder: site |