fix build #84
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: gh-deploy | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository with full history (fetch-depth: 0) | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
# Setup Python 3.x environment | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
# Install all the necessary dependencies in one step | |
- name: Install dependencies | |
run: | | |
pip install mkdocs>=1.2.3 | |
pip install mkdocs-material | |
pip install mkdocs-click | |
pip install pymdown-extensions | |
pip install mkdocs-rss-plugin | |
# Deploy the site using mkdocs | |
- name: Deploy with MkDocs | |
run: mkdocs gh-deploy --force |