Merge pull request #1718 from IRRDC/master #26
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: Update docs | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
# - name: Install mkdocs | |
# run: pip install mkdocs | |
- name: Install MkDocs theme | |
run: pip install mkdocs-material==3.1.0 | |
- name: Build docs | |
run: mkdocs gh-deploy --force -m "[ci skip]" | |
working-directory: docs/documentation |