prepare release v0.0.2 #12
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 Documentation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository 🛎️ | |
uses: actions/checkout@v4 | |
- name: Install Python 3.12 🐍 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install requirements 📦 | |
run: | | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
git fetch # necessary for mkdocs gh-deploy | |
- name: Deploy Docs 📔 | |
run: mkdocs gh-deploy --force --no-history |