Merge pull request #56 from copick/uermel/update_docs #25
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: docs | |
on: | |
push: | |
branches: | |
- main | |
# This job installs dependencies, builds the book, and pushes it to | |
# the `gh-pages` branch of the same repository. | |
jobs: | |
deploy-book: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
pip install -e ".[docs]" | |
# Build the book | |
- name: Build the book | |
run: | | |
mkdocs build | |
# Push the site to github-pages | |
- name: GitHub Pages action | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
publish_dir: ./site | |
github_token: ${{ secrets.GITHUB_TOKEN }} |