try new face #1
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: Deploy | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Deploy docs to GitHub Pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- run: pip install mkdocs-material | |
- run: pip install pymdown-extensions | |
- run: pip install mkdocs-glightbox | |
- run: pip install mkdocs-pdf-export-plugin | |
- run: pip install mkdocs-git-revision-date-plugin | |
- name: Build | |
uses: Tiryoh/actions-mkdocs@v0 | |
with: | |
mkdocs_version: 'latest' # option | |
#mkdocs_version: '1.1' # option | |
#requirements: 'requirements.txt' # option | |
configfile: 'mkdocs.yml' # option |