Update icbo-schedule.md #287
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 and Deploy Static Mkdocs Documentation | |
# Controls when the action will run. Triggers the workflow on push | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'mkdocs.yml' | |
- 'docs/*' | |
- 'docs/images/*' | |
- 'docs/papers/*' | |
- 'docs/slides/*' | |
- 'docs/flash-talks/*' | |
- 'docs/photos/*' | |
- 'docs/survey/*' | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
github-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
# install dependencies | |
- run: pip install --upgrade pip | |
- run: pip install mkdocs | |
# deploy documentation (note: requires documentation is in docs dir) | |
- run: mkdocs gh-deploy --remote-branch gh-pages --force --theme readthedocs |