Skip to content

add workflow for deploy docs #1

add workflow for deploy docs

add workflow for deploy docs #1

Workflow file for this run

name: build and deploy docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup python
uses: actions/setup-python@v5
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: build and deploy
run: mkdocs gh-deploy